Git只添加所有新文件,而不是修改过的文件

时间:2013-04-02 10:33:33

标签: git git-add

有没有办法只添加新文件而不用git添加修改过的文件?也就是说,列为未跟踪git status的文件。

除了当然分别添加每个文件。

在我的案例中并非绝对有必要这样做,对我来说真正的问题在这里得到解答:How to make git-diff and git log ignore new and deleted files?

也就是说,不要在新文件上显示差异,所以我更多地问这个问题,因为我无法在任何地方找到答案。

2 个答案:

答案 0 :(得分:16)

也许

git add $(git ls-files -o --exclude-standard)

git ls-files允许您列出由git管理的文件,并通过某些选项进行过滤。在这种情况下-o过滤它只显示“其他(即未跟踪的文件)”

$(...)语句将该命令的返回值作为参数传递给git add

答案 1 :(得分:3)

您可以使用短模式的git状态(请参阅man git-status(1)),它提供以下输出:

没有短模式:

$ git status

...


# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#   README
#   application/libraries/Membres_exception.php
no changes added to commit (use "git add" and/or "git commit -a")

使用短模式:

$ git status -s
 M application/models/membre_model.php
?? README
?? application/libraries/Membres_exception.php

然后使用grep,awk和xarg,您可以添加第一列为??的文件。

$ git status -s | grep '??' | awk '{ print $2 }' | xargs git add 

并看到它有效:

$ git status
# On branch new
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#   new file:   README
#   new file:   application/libraries/Membres_exception.php