32

What's a shell command I can use to, using the full directory path, determine whether or not a given directory is a git repository? Specifically, I'd like to be able to do this without being in the directory, and without having to cd into it. I'd also like to be able to do it with a command that returns a simple "true" or "false" (much the way that rev-parse --is-inside-work-tree does), but it's not a requirement.

6
  • 3
    test -d "$path/.git"
    – Siguza
    Sep 15, 2016 at 18:38
  • 2
    and also [[ -d "$PATH/.git" ]] && <other commands>
    – hjpotter92
    Sep 15, 2016 at 18:41
  • You could grep for a .git folder? Or you could cd into it then check then cd back to current working directory?
    – J0B
    Sep 15, 2016 at 18:42
  • @Siguza I considered that as a solution, but what if the directory isn't actually a git repository, but just contains a directory named .git? (e.g. .git doesn't contain ORIG_HEAD, FETCH_HEAD, etc.) Sep 15, 2016 at 18:47
  • 1
    @Ataraxia Then I'd consider that a broken git repository... but that is a matter of opinion. If you only want intact/"valid" git repositories, you're probably best off testing a git command for error codes in addition to the .git check.
    – Siguza
    Sep 15, 2016 at 18:56

6 Answers 6

53

Use git -C <path> rev-parse. It will return 0 if the directory at <path> is a git repository and an error code otherwise.

Further Reading:

8
  • 12
    Note: This will also return 0 for any subdirectory of a git repository.
    – Siguza
    Sep 15, 2016 at 18:55
  • 1
    Awesome! Thank you!! Sep 15, 2016 at 20:29
  • 3
    git -C <path> rev-parse 2>/dev/null for cleaner script integration
    – daparic
    Nov 12, 2020 at 11:11
  • 2
    To complement the answer and comments: git -C $REPO_DIR rev-parse 2>/dev/null exit_code=$(echo $?) if [ "$exit_code" -ne 0 ] ; then echo "$REPO_DIR is not a git repository" fi
    – JBSnorro
    Apr 29, 2021 at 19:29
  • @JBSnorro I hate bash, but I wonder, could you not also simply write if [ "$?" -ne 0 ] ;?
    – ypnos
    Apr 29, 2021 at 19:36
6

We can also try git status command and if the output is like :

fatal: Not a git repository (or any of the parent directories): .git

Then, the directory is not a git repository.

3

Any directory in the system could be a git working copy. You can use an directory as if it contained a .git subdirectory by setting the GIT_DIR and GIT_WORK_TREE environment variables to point at an actual .git directory and the root of your working copy, or use the --git-dir and --work-tree options instead. See the git man page for more details.

1

Adding to @Walk's comments, git status will throw fatal message if its not a repo. echo $? will help to capture of its an ERROR or not. If its a git repo then echo $? will be 0 else 128 will be the value

1

Consider git rev-parse --is-inside-work-tree as well here (with the appropriate -C first as well if/as desired) to check whether this is a working tree. This allows you to distinguish between the "working tree" and "bare repository" cases:

$ git -C .git rev-parse && echo $?
0
$ git -C .git rev-parse --is-inside-work-tree && echo $?
false
0

As always, be aware that if you're not in a Git directory at all, you get an error:

$  git -C / rev-parse --is-inside-work-tree
fatal: not a git repository (or any of the parent directories): .git

which you may wish to discard (git ... 2>/dev/null). Since --is-inside-work-tree prints true or false you'll want to capture or test stdout.

0

In unix/linux systems, you can run git status and check the exit code echo $?. Anything other than 0 would tell you aren't in a git repo

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.