git add -- Add file contents to the index.
添加文件内容到索引(暂存区)。
Before running the commit command, you must use the add command to add new or modified files to the index.
在运行git commit命令之前,必须用git add命令将新的或者修改过的文件添加到索引(暂存区)。
Options:
-n,--dry-run
Don`t actually add the file(s), just show if they exist and/or will be ignored.
并不是真正的添加文件,只是显示它们是否存在或者被忽略。
-v, --verbose
Be verbose.
使用啰嗦模式执行命令。
-f, --force
Allow adding otherwise ignored files.
允许添加另外被忽略的文件。
-i, --interactive
Add modified contents in the working tree interactively to the index. Optional path arguments may be supplied to limit operation to a subset of the working tree. See "Interactive mode" for details.
交互式添加工作树中的内容到索引(暂存区)中。可选择的路径参数可能会应用到工作树子集的限制性操作中。具体查看“Interactive mode”。
-p, --patch
Interactively choose hunks of patch between the index and the work tree and add them to index. This gives user a chance to review the difference before adding modified contents to the index.
能力有限,日后更新。
本文详细介绍了Git Add命令的作用、使用方法及其关键选项,旨在帮助开发者掌握如何有效管理文件,确保代码提交过程顺利进行。通过使用Git Add,开发者能够将新增或修改的文件添加至索引(暂存区),为下一步的提交做准备。
1160

被折叠的 条评论
为什么被折叠?



