Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のgitレポで実行すると、これが得られます。
git pull . From . * branch HEAD -> FETCH_HEAD Current branch rel_20121207 is up to date.
しかし、実行するとgit pull、実際にはリモートから更新されます。
git pull
私が走ったときに正確に何が起こったのか知りたいgit pull .
git pull .
はー、これは楽しい。git pullリモート名またはファイル仕様を取ります。ファイル仕様 (' .' は現在のディレクトリを意味します) を指定しているため、現在のリポジトリをリモートのように扱い、現在の HEAD を FETCH_HEAD にスローします。あなたはレポをそれ自体に引っ張っています。本質的には何もしていません。
.