如何将git状态仅限制在当前目录中的常规文件中?

时间:2015-03-18 14:06:41

标签: git git-status

我想查看当前目录的状态。因为子目录中有很多变化,我希望看到这些变化,所以以下命令不起作用:

git status .

有没有办法获得此类报告,而不是轻视git status的输出?

4 个答案:

答案 0 :(得分:10)

使用git-status -- <pathspec>...

git-status man page的概要告诉您可以按路径过滤:

git status [<options>...] [--] [<pathspec>...]

因此,您所要做的就是获取当前目录中常规(非目录)文件对应的路径列表,并将其传递给git-status

有一个问题:因为git status报告了整个存储库,如果传递了一个空的<pathspec>...参数,则需要检查列表是否为空。< / p>

Shell脚本

这是一个小型的shell脚本,可以满足您的需求。

#!/bin/sh

# git-status-dot
#
# Show the status of non-directory files (if any) in the working directory
#
# To make a Git alias called 'status-dot' out of this script,
# put the latter on your search path, make it executable, and run
#
#   git config --global alias.status-dot '! git-status-dot'

# Because GIt aliases are run from the top-level directory of the repo,
# we need to change directory back to $GIT_PREFIX.
[ "$GIT_PREFIX" != "" ] && cd "$GIT_PREFIX"

# List Non-Directory Files in the Current Directory
lsnondirdot=$(ls -ap | grep -v /)

# If "lsnondirdot" is not empty, pass its value to "git status".
if [ -n "$lsnondirdot" ]
then
    git status -- $lsnondirdot
else
    printf "No non-directory files in the working directory\n"
fi

exit $?

有关为何需要GIT_PREFIX恶作剧的详细信息,请参阅git aliases operate in the wrong directory

该脚本位于GitHub上的Jubobs/git-aliases

从中创建一个Git别名

为方便起见,您可以创建一个调用脚本的Git别名;但请确保脚本在您的路径上。

git config --global alias.statusdot '!sh git-status-dot.sh'

玩具示例

这是一个玩具示例,演示如何使用生成的别名及其作用。

# initialize a repo
$ mkdir testgit
$ cd testgit
$ git init

# create two files
$ mkdir foo
$ touch foo/foo.txt
$ touch bar.txt

# good old git status reports that subdir/test1.txt is untracked... 
$ git status
On branch master

Initial commit

Untracked files:
  (use "git add <file>..." to include in what will be committed)

    bar.txt
    foo/

nothing added to commit but untracked files present (use "git add" to track)
# ... whereas our new alias, git status-dot, only cares
# about regular files in the current directory
$ git status-dot
On branch master

Initial commit

Untracked files:
  (use "git add <file>..." to include in what will be committed)

    bar.txt

nothing added to commit but untracked files present (use "git add" to track)

# and if we delete README.md ...
$ rm README.md
# ... good old git status still bother us about /subdir ...
$ git status
Initial commit

Untracked files:
  (use "git add <file>..." to include in what will be committed)

    foo/

nothing added to commit but untracked files present (use "git add" to track)
# ... whereas git statusdot doesn't
$ git status-dot
No non-directory files in the working directory
$

答案 1 :(得分:5)

也许有更合适的方法来做到这一点,但你可以简单地

find . -maxdepth 1 -type f -print0 | xargs -0 git status

当然,如果当前目录中没有常规文件,则会失败。在这种情况下,您可以使用额外的丑陋版本

find . -maxdepth 1 -type f -print0 | xargs -0 git status nonexistentfile

而且,不,我不会解决你有一个名为nonexistentfile的文件的情况。

答案 2 :(得分:4)

您可以使用:

git status | grep -v /

过滤掉任何包含斜杠(/)的路径,这意味着它们位于子目录中。

您还将丢失已更改路径的红色/绿色。

<强>更新

此解决方案不显示从当前目录移动或移动到当前目录的文件,因为移动操作的源和目标显示在输出的同一行中。现在显示在当前目录中重命名的文件(不在目录之间移动)。

答案 3 :(得分:1)

我相信答案是否定的......

除非文件是未跟踪的文件,子模块或被忽略的文件。 status命令的完整文档没有提到将输出限制到当前目录的内容。

但是,您可能需要考虑使用stash命令来清理工作树。如果你藏匿的东西不在当前目录中(这需要--patch选项只隐藏选择性部分),那么status只会显示你没有藏匿的东西。但是,如果您在工作时多次使用stash,那么您应该始终拥有一个干净的工作树,并且可以避免这个问题。每一件工作都将被打包在一个单独的藏匿处,等待你准备好提交它。

当然,这对您当前的情况没有太大帮助(除了使用(stash --patch)。您可能想要尝试的另一个选择是add stash --patch然后你可以浏览所有已更改的文件并有选择地添加你想要的文件({{1}}以相同的方式工作)。

或者,您可以使用其他答案中建议的grep解决方案。