是否有可能要求git diff在其diff输出中包括未跟踪的文件,或者我最好的选择是使用git添加新创建的文件和我编辑过的现有文件,然后使用:

git diff --cached

?


当前回答

在最新的git版本中,您可以git add -N the file(或——intent-to-add),这将在该位置的索引中添加一个零长度的blob。结果是,您的“未跟踪”文件现在变成了一个修改,将所有内容添加到这个零长度文件中,并显示在“git diff”输出中。

git diff

echo "this is a new file" > new.txt
git diff

git add -N new.txt
git diff
diff --git a/new.txt b/new.txt
index e69de29..3b2aed8 100644
--- a/new.txt
+++ b/new.txt
@@ -0,0 +1 @@
+this is a new file

不幸的是,正如所指出的,当你有一个——intent-to-add文件挂起时,你不能git stash。虽然如果你需要隐藏,你只需要添加新文件,然后隐藏它们。或者您可以使用仿真解决方案:

git update-index --add --cacheinfo \
100644 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 new.txt

(在这里设置别名是你的朋友)。

其他回答

不是100%的重点,但如果出于某种原因,你不想把你的文件添加到索引中,这是另一个选择:

如果文件是未跟踪的,显然diff是整个文件,所以你可以用less查看它们:

less $(git ls-files --others --exclude-standard)

在它们之间导航:n和:p为下一个和前一个..

从评论更新:如果你需要一个补丁格式,你也可以结合git diff:

git ls-files --others --exclude-standard -z | xargs -0 -n 1 git --no-pager diff /dev/null | less

在这种情况下,还可以将输出重定向到文件或使用其他diff命令。

通常,当我与远程位置团队一起工作时,在我遵循git阶段untrack- > staging ->commit之前,我事先了解其他团队在同一个文件中所做的更改对我来说很重要 为此,我写了一个bash脚本,这有助于我避免不必要的解决合并冲突与远程团队或使新的本地分支,并比较和合并在主分支

#set -x 
branchname=`git branch | grep -F '*' |  awk '{print $2}'`
echo $branchname
git fetch origin ${branchname}
for file in `git status | grep "modified" | awk "{print $2}" `
do
echo "PLEASE CHECK OUT GIT DIFF FOR "$file 
git difftool FETCH_HEAD $file ;
done

在上面的脚本中,我获取远程主分支(不需要它的主分支)到FETCH_HEAD,它们只列出我修改过的文件,并将修改过的文件与git difftool进行比较

这里git支持许多difftools。我配置'Meld Diff查看器'为良好的GUI比较。

假设您没有本地提交,

git diff origin/master

对于我的交互式日常获取(我一直在根据HEAD对工作树进行差异,并且希望在diff中包含未跟踪的文件),add -N/——intent-to-add是不可用的,因为它破坏了git stash。

这是我的git diff替换。这不是一个特别干净的解决方案,但因为我真的只是交互地使用它,所以我可以接受一个hack:

d() {
    if test "$#" = 0; then
        (
            git diff --color
            git ls-files --others --exclude-standard |
                while read -r i; do git diff --color -- /dev/null "$i"; done
        ) | `git config --get core.pager`
    else
        git diff "$@"
    fi
}

只输入d将包括diff中未跟踪的文件(这是我在我的工作流中关心的),d参数…将表现得像普通的git差异。

注:

We're using the fact here that git diff is really just individual diffs concatenated, so it's not possible to tell the d output from a "real diff" -- except for the fact that all untracked files get sorted last. The only problem with this function is that the output is colorized even when redirected; but I can't be bothered to add logic for that. I couldn't find any way to get untracked files included by just assembling a slick argument list for git diff. If someone figures out how to do this, or if maybe a feature gets added to git at some point in the future, please leave a note here!

git add -A
git diff HEAD

生成补丁,如果需要,然后:

git reset HEAD