转载于:https://coding.net/help/doc/git/push.html
当下述指令没有生效,即文件没有被追踪
git add 文件名
则显示
On branch master
Your branch is up-to-date with 'origin/master'
nothing to commit, working directory clean
当下述指令生效
git add 文件名
但下述指令未生效,即文件被追踪却没有提交成功,则显示
On branch master
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: learn_git.txt
modified: readme.txt
no changes added to commit (use "git add" and/or "git commit -a")
当文件成功追踪且提交,则显示
$ git status
On branch master
nothing to commit, working tree clean