首页 > 代码库 > Git - 批量增删修改操作

Git - 批量增删修改操作

查看命令帮助

git help

打开git-add Manual Page:git help <command>

git help add

命令详解:

git add -A | --all | --no-ignore-removal

 stages all:add, modify and remove

git add . | --no-all | --ignore-removal

 stages new and modified, without deleted:add & modify , ignore remove

git add -u | --update

 stages modified and deleted, without new:remove & modify, ignore add


本文出自 “飒飒秋风” 博客,请务必保留此出处http://xjhznick.blog.51cto.com/3608584/1562033

Git - 批量增删修改操作