私はもう1年近くチームと仕事をしています。github / gitを使用して、以下を使用して変更をプルおよびプッシュするのは常に簡単です。
git pull
git add .
git commit -a -m "my work desc"
git push
それは最近まで常にうまく機能してきました。何があっても、誰かがプッシュした場合、プルしようとすると次のメッセージが表示されます。
E325: ATTENTION
Found a swap file by the name ".git/.COMMIT_EDITMSG.swp"
owned by: X dated: Wed Jan 23 16:01:06 2013
file name: ~X/Sites/mysite/.git/COMMIT_EDITMSG
modified: no
user name: X host name: X-2.local
process ID: 77109
While opening file ".git/COMMIT_EDITMSG"
dated: Thu Jan 24 16:22:48 2013
NEWER than swap file!
(1) Another program may be editing the same file.
If this is the case, be careful not to end up with two
different instances of the same file when making changes.
Quit, or continue with caution.
(2) An edit session for this file crashed.
If this is the case, use ":recover" or "vim -r .git/COMMIT_EDITMSG"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file ".git/.COMMIT_EDITMSG.swp"
to avoid this message.
Swap file ".git/.COMMIT_EDITMSG.swp" already exists!
[O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:
これは、失敗するたびに発生します。メッセージを挿入し、保存して再コミットすることで、最終的にこれを乗り越えることができますが、それは苦痛です。なぜこれが起こり続けるのか、そして何ができるのか、何か考えはありますか?
ありがとう