限制git add。 -A -n到目录(没有子目录)

时间:2014-09-10 17:32:51

标签: git

如何限制输出:

git add . -A -n

只到目前的目录?例如。类似的东西:

git add . -A -n --depth=0

我目前位于项目的基本目录中,希望查看仅在该级别更改的文件。使用grep -v作为后处理的一部分,输出是不切实际的,因为git add . -A -n在必须扫描子目录时花费的时间太长。

2 个答案:

答案 0 :(得分:2)

ls -p|grep -v / |xargs git add -An 

答案 1 :(得分:2)

find . -maxdepth 1 \( -type f -o -type l \) -exec git add {} -A -n \;