2015-02-23 48 views

回答

4

你可以看到這些信件中詳細man git diff-files

A: addition of a file 
D: deletion of a file 
U: file is unmerged (you must complete the merge before it can be committed) 

其他字母爲 「What does 「T」 mean in 「git status」?

C: copy of a file into a new one 
D: deletion of a file 
M: modification of the contents or mode of a file 
R: renaming of a file 
T: change in the type of the file 
X: "unknown" change type (most probably a bug, please report it) 

關於 「Pull is not possible because you have unmerged files」 錯誤消息,它符合上市在輸出中看到的「U」(未合併文件)。
請參閱「Why does git say 「Pull is not possible because you have unmerged files」?

要解決這個問題,你將不得不解決的問題合併衝突,並添加並提交更改,你可以做一個git pull之前。