Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writing a shell script to automatically update several directories of git repos, and I want to ignore repos that do not have a remote origin to pull from. So far I have

if git remote 2>&1 >/dev/null; then

which successfully determines whether a directory is a git repo. But for any new git repo,

git remote

returns "origin" and an error status of 0. How do I distinguish between such repos and a repo where the command git pull will do something?

I could use

git remote show origin

but this will connect to the origin server if it exists, and I'd prefer a command that's fast and local.

share|improve this question

2 Answers

up vote 1 down vote accepted

You can always check .git/config for the existence of [remote "origin"] ?

#/bin/bash
if grep -Fxq '[remote "origin"]' .git/config
then
    echo "yes"
else
    echo "no"
fi
share|improve this answer
Nice hack! Seems to work perfectly. – Trevor Burnham Nov 26 '12 at 19:35

If a repository has an origin, then the folder .git/refs/remotes/origin has to exist.

test -d .git/refs/remotes/origin

will return 0.

share|improve this answer
Not necessarily reliable, as git will at some point decide to start using packed refs instead of the directory hierarchy. – twalberg Nov 26 '12 at 17:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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