there are some scripts that do not work correctly if they check for changes.

I tried it like this:

VN=$(git describe --abbrev=7 HEAD 2>/dev/null)  

git update-index -q --refresh  
CHANGED=$(git diff-index --name-only HEAD --)  
if [ ! -z $CHANGED ];  
    then VN="$VN-mod"   
fi

Is there some kind of boolean check if there has been changes since last commit, or how can I really test if there are new changes to my local repository

I'm doing all this for a version creation script (that I found somewhere here)

link|improve this question

1  
What's wrong with git status ? – karlphillip Feb 28 '11 at 15:25
@karlphillip: It does a lot of processing that you don't really need. – Jefromi Feb 28 '11 at 15:28
feedback

4 Answers

up vote 5 down vote accepted

What you're doing will almost work: you should quote $CHANGED in case it's empty, and -z tests for empty, which means no changes. What you meant was:

if [ -n "$CHANGED" ]; then
    VN="$VN-mod"
fi

A quote from git's GIT-VERSION-GEN:

git update-index -q --refresh
test -z "$(git diff-index --name-only HEAD --)" ||
VN="$VN-dirty"

It looks like you were copying that, but you just forgot that detail of quoting.

Of course, you could also just do this:

if git diff-index --quiet HEAD --; then
    # no changes
else
    # changes
fi

or if you only care about the "something has changed" case:

if ! git diff-index --quiet HEAD --; then
    VN="$VN-mod"
fi

Using --quiet has the benefit that git can stop processing as soon as it encounters a single diff, so it may not have to check your entire work tree.

link|improve this answer
Hi, that was one of the best answers on a question, you just gave me all information that I needed and that others my need as well :). I'll just need the last one, "something has changed" :) and you were right, I copied it. – kmindi Feb 28 '11 at 15:34
The amazing bash completion script seems to use git diff --no-ext-diff --quiet --exit-code to determine the dirty state. – mjs Jan 13 at 12:20
@mjs: That's indeed a great place to look for things like this! The --no-ext-diff option is good for safety (in case someone has configured an external diff driver), though the --exit-code shouldn't be necessary, since it's implied by --quiet. – Jefromi Jan 13 at 14:56
feedback

Although Jefromi's answer is good, I'm posting this just for reference.

From the git source code there is a sh script which includes the following.

require_clean_work_tree () {
    git rev-parse --verify HEAD >/dev/null || exit 1
    git update-index -q --ignore-submodules --refresh
    err=0

    if ! git diff-files --quiet --ignore-submodules
    then
        echo >&2 "Cannot $1: You have unstaged changes."
        err=1
    fi

    if ! git diff-index --cached --quiet --ignore-submodules HEAD --
    then
        if [ $err = 0 ]
        then
            echo >&2 "Cannot $1: Your index contains uncommitted changes."
        else
            echo >&2 "Additionally, your index contains uncommitted changes."
        fi
        err=1
    fi

    if [ $err = 1 ]
    then
        test -n "$2" && echo >&2 "$2"
        exit 1
    fi
}
link|improve this answer
feedback

Had similar problem, but had to check for added files also, so I did as Following:

cd /local/repo
RUN=0
git diff --no-ext-diff --quiet --exit-code || RUN=1
if [ $RUN = 0 ]; then
    RUN=`git ls-files --exclude-standard --others| wc -l`
fi

if [ $RUN = 0 ]; then
    exit 0
fi
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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