0
誰かが私に次の出力を説明できますか?git-statusはすべてがきれいですが、git-pullはunstagedの変更について文句を言います
[[email protected] hostname /dir]% git status
On branch master
Your branch is up-to-date with 'origin/master'.
It took 11.81 seconds to enumerate untracked files. 'status -uno'
may speed it up, but you have to be careful not to forget to add
new files yourself (see 'git help status').
nothing to commit, working directory clean
[[email protected] hostname /dir]% git pull
Cannot pull with rebase: You have unstaged changes.
Please commit or stash them.
[[email protected] hostname /dir]% git --version
git version 2.4.8
[[email protected] hostname /dir]%
この質問にどのように役立つか分かりません。私はここで何が起こったのかはまだ分かりません。問題のディレクトリを削除したからです。私は、これらの問題は狂ったNFSディスクが原因だと思います。非常に頻繁に.git/.lockファイルが残っているgitプロセスなしで配置されています。いったんgit clean -fdが読み込み中のディレクトリのために失敗しました。だから私はこの質問を削除しても問題ありません。もちろん、その答えは問題をデバッグする方法の観点から役立ちます。 –