UbuntuとDebianでは、後でチェックアウトしようとすると、最後にコミットされたファイルに実行ビットが設定されています。それはかなり奇妙で、私を狂わせます:
$ ls -l file
-rw-r--r-- ... file
# on branch master:
$ git commit -m 'mode is 644' file
[master 0123456] mode is 644
1 files changed, 1 insertions(+), 1 deletions(-)
# All ok
$ git checkout dev-branch
Switched to branch 'dev-branch'
# Seemingly all ok, but file now has the exec bit set
$ git merge master
Updating 6543210..0123456
error: Your local changes to 'file' would be overwritten by merge. Aborting.
Please, commit your changes or stash them before you can merge.
# Oops...
$ ls -l file
-rwxr-xr-x ... file
誰かがアイデアを持っていますか?いつ、なぜ実行ビットが挿入されるのですか?core.filemode
に設定されていtrue
ます。
どういうわけかそれが重要であれば、ブランチの切り替え中にファイルをvimで開いています。
補遺1:権限が台無しにされるチェックアウトです。私は何度でもゲームをプレイできます:
$ git br
* master
dev-branch
$ git diff
diff --git a/file b/file
old mode 100644
new mode 100755
$ chmod 644 file
$ git diff
$ git checkout dev-branch
$ git diff
diff --git a/file b/file
old mode 100644
new mode 100755
$ chmod 644 file
$ git diff
$ git checkout master
$ git diff
diff --git a/file b/file
old mode 100644
new mode 100755
# ...and so on ad inf.
補遺2:ちなみに、これは私がコミットするこのリポジトリ内のすべてのファイルに対して発生します。コミットが成功した後、許可のねじ込みがなければ、ブランチを切り替えることはできません。
git-log
組み合わせではmaster
、出力はまったく表示されませんdev-branch
HEAD
master