您的位置:首页 > 其它

Git学习笔记之git add

2015-05-29 20:58 295 查看
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