我有這樣的git的狀態:添加的所有文件中的git
User#/d/Work/Project/Module1/NV/build (master)$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 3 commits.
# (use "git push" to publish your local commits)
#
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: ../../Module1/CMakeLists.txt
# modified: ../../Module1/Container.cpp
#
no changes added to commit (use "git add" and/or "git commit -a")
我如何可以添加2個文件? git add -A
不起作用? 我知道有可能使用選項git add ../../.
,原因很明顯。
我知道可以用git add
選項添加文件,但我不記得它,我也沒有找到它。我使用git version 1.8.1.msysgit.1
。
您位於子目錄中。爲什麼你不能只做這個命令? cd ../ .. && git add。 – cooperok
>沒有更改添加到提交(使用「git add」和/或「** git commit -a **」)? – Ajedi32
@cooperok我已經說過'git add ../../。'不是一個選項。 –