git-add[-all|-A]和git-add.之间有什么区别。?
当前回答
Git版本1.x
Command | New Files | Modified Files | Deleted Files | Description |
---|---|---|---|---|
git add -A |
✔️ | ✔️ | ✔️ | Stage all (new, modified, deleted) files |
git add . |
✔️ | ✔️ | ❌ | Stage new and modified files only in current folder |
git add -u |
❌ | ✔️ | ✔️ | Stage modified and deleted files only |
Git 2.x版
Command | New Files | Modified Files | Deleted Files | Description |
---|---|---|---|---|
git add -A |
✔️ | ✔️ | ✔️ | Stage all (new, modified, deleted) files |
git add . |
✔️ | ✔️ | ✔️ | Stage all (new, modified, deleted) files in current folder |
git add --ignore-removal . |
✔️ | ✔️ | ❌ | Stage new and modified files only |
git add -u |
❌ | ✔️ | ✔️ | Stage modified and deleted files only |
长格式标志:
gitadd-A相当于gitadd--allgitadd-u等同于gitadd--update
进一步阅读:
初学者Git:权威实用指南学习Git的资源学习Git分支用D3解释Git
其他回答
Git版本1.x
Command | New Files | Modified Files | Deleted Files | Description |
---|---|---|---|---|
git add -A |
✔️ | ✔️ | ✔️ | Stage all (new, modified, deleted) files |
git add . |
✔️ | ✔️ | ❌ | Stage new and modified files only in current folder |
git add -u |
❌ | ✔️ | ✔️ | Stage modified and deleted files only |
Git 2.x版
Command | New Files | Modified Files | Deleted Files | Description |
---|---|---|---|---|
git add -A |
✔️ | ✔️ | ✔️ | Stage all (new, modified, deleted) files |
git add . |
✔️ | ✔️ | ✔️ | Stage all (new, modified, deleted) files in current folder |
git add --ignore-removal . |
✔️ | ✔️ | ❌ | Stage new and modified files only |
git add -u |
❌ | ✔️ | ✔️ | Stage modified and deleted files only |
长格式标志:
gitadd-A相当于gitadd--allgitadd-u等同于gitadd--update
进一步阅读:
初学者Git:权威实用指南学习Git的资源学习Git分支用D3解释Git
两个git add。gitadd-A将在更新版本的git中暂存所有新的、修改的和删除的文件。
不同之处在于,git add-A将文件存放在属于您工作的git存储库的“更高、当前和子目录”中。但做一个git加法。仅暂存当前目录及其后的子目录中的文件(而不是位于外部的文件,即更高的目录)。
下面是一个示例:
/my-repo
.git/
subfolder/
nested-file.txt
rootfile.txt
如果您当前的工作目录是/my repo,并且您执行rm rootfile.txt,然后是cd子文件夹,然后是git add。,则它将不暂存已删除的文件。但是,无论您从何处执行命令,执行git add-A肯定会进行此更改。
一个更精炼的快速答案:
两者都在下面(与git add--all相同)
git add -A
暂存新的+修改的文件
git add .
阶段已修改+已删除文件
git add -u
-A选项添加、修改和删除索引项以匹配工作树。
在Git 2中,-A选项现在是默认选项。
当。根据Git文档,添加了将更新范围限制为当前所在的目录
如果在使用-A选项时未指定<pathspec>,则会更新整个工作树中的所有文件(旧版本的Git用于限制对当前目录及其子目录的更新)。
我要补充的一点是,如果使用--interactive或-p模式,那么gitadd的行为就像使用了update(-u)标志一样,不会添加新文件。
我讨厌git的分段机制,这在其他SCM工具中找不到。所以我总是使用:
\gitadd--all&&\gitcommit--all
(即使使用\git add--all,\git commit也足够了)
用于添加:
--no-ignore-removal --all | add, modify, and remove index entries to match the working tree
--ignore-removal --no-all | add, modify index entries to match the working tree
--intent-to-add | add an entry for the path to the index, with no content
-A是--all的缩写
gitadd<pathspec>等于:
对于Git 2.35.1版本:Git add--all<pathspec>Git:Git-add的旧版本--无所有<pathspec>
但是gitadd后面跟nothing,不等于gitadd--all,并且不会做任何事情:
gitadd--all(省略<pathspec>):处理整个工作树中的所有文件(旧版本的git用于将更新限制到当前目录及其子目录)。
gitcommit--全部
告诉命令自动暂存已修改和删除的文件,。你没有告诉Git的新文件不会受到影响
推荐文章
- Bower: ENOGIT Git未安装或不在PATH中
- Bitbucket上的Git:总是要求密码,即使上传了我的公共SSH密钥
- Git别名-多个命令和参数
- 如何添加一个“打开git-bash这里…”上下文菜单到windows资源管理器?
- 是否可以在Git中只提取一个文件?
- 当我做“git diff”的时候,我怎么能得到一个并排的diff ?
- 在git中如何将提交移动到暂存区?
- 如何缩小。git文件夹
- 如何在本地删除分支?
- 找到包含特定提交的合并提交
- Windows上Git文件的权限
- 如何从一个枝头摘到另一个枝头
- 如何获得在两次Git提交之间更改的所有文件的列表?
- 什么是跟踪分支?
- 如何在不稳定的连接上完成一个大项目的git克隆?