X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=git-checkout-script;h=4b3ae4adc262a7255882d4faff09c0e3a5f5afad;hb=180926636e47ecfe28d03cec493af75899994f0f;hp=dc1cffde0bd214b90f0c0b754f0e5f33bd3023b2;hpb=a79944d76cf4098e42d13e5743a3dccb61ebaca6;p=git.git diff --git a/git-checkout-script b/git-checkout-script index dc1cffde..4b3ae4ad 100755 --- a/git-checkout-script +++ b/git-checkout-script @@ -1,27 +1,35 @@ #!/bin/sh : ${GIT_DIR=.git} old=$(git-rev-parse HEAD) -new=$(git-rev-parse --revs-only "$@") -new=${new:-$old} -args=($(git-rev-parse --no-revs "$@")) - -i=0 +new= force= -update= -while [ $i -lt ${#args} ]; do - case "${args[$i]}" in +branch= +while [ "$#" != "0" ]; do + arg="$1" + shift + case "$arg" in "-f") - force=1;; - "-u") - update=1;; - "") + force=1 ;; *) - echo "unknown flag ${args[$i]}" - exit 1;; + rev=$(git-rev-parse "$arg") + if [ -z "$rev" ]; then + echo "unknown flag $arg" + exit 1 + fi + if [ "$new" ]; then + echo "Multiple revisions?" + exit 1 + fi + new="$rev" + if [ -f "$GIT_DIR/refs/heads/$arg" ]; then + branch="$arg" + fi + ;; esac i=$(($i+1)) done +[ -z "$new" ] && new=$old if [ "$force" ] then @@ -29,5 +37,15 @@ then git-checkout-cache -q -f -u -a else git-read-tree -m -u $old $new -fi && [ "$update" ] && echo $new > "$GIT_DIR/HEAD" +fi +# +# Switch the HEAD pointer to the new branch if it we +# checked out a branch head, and remove any potential +# old MERGE_HEAD's (subsequent commits will clearly not +# be based on them, since we re-set the index) +# +if [ "$?" -eq 0 ]; then + [ "$branch" ] && ln -sf "refs/heads/$branch" "$GIT_DIR/HEAD" + rm -f "$GIT_DIR/MERGE_HEAD" +fi