1 删除工作区和暂存去的a文件$ git rm a 2只删除暂存去的 a文件,a文件就不被跟踪了.可以执行git add a从新添加回暂存去$ git rm --cached a 3 git mv 操作在工作去将原有的文件重命名或者移动,在暂存去删除原有文件.将新的文件添加到暂存去git mv c a <=> mv a c + git add a c 4 忽略文件.gitignore*.[oa] 忽略以o,a结尾文件*.pyc忽略所有pyc后缀名文件!test.pyc 这个文件不要被忽略,需要
git add --all 为啥不能添加空文件夹,这样设计的初衷是? 好多项目还得弄个假文件在空文件夹里面占位 这个算设计失误吧,见 https://git.wiki.kernel.org/index.php/GitFaq#Can_I_add_empty_directories.3F Currently the design of the git index (staging area) only permits files to be listed, and nobody competent
如果我们更改了之前已经被跟踪的main.c,然后执行git status $ git status 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 dir