X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=PU;h=4b4be2ba42af34f82a03092f2523ad1c7ef8e008;hb=refs%2Fheads%2Ftodo;hp=2fd20e8216aadf06ce0289c88ea6258958ddf86b;hpb=b14e2494b8a70737066f4ade4df1b5559e81b44b;p=git.git diff --git a/PU b/PU index 2fd20e82..4b4be2ba 100755 --- a/PU +++ b/PU @@ -9,8 +9,15 @@ case "$(git-diff-index --name-status HEAD)" in *) echo 2>&1 "Local modifications exist." exit 1;; esac -git checkout pu && -git reset --hard master && + +case "$1" in +--continue) + shift + ;; +*) + git checkout pu && + git reset --hard master || exit +esac ORIG_HEAD=`git rev-parse ORIG_HEAD` || exit LF=' ' @@ -66,7 +73,8 @@ case "$#" in esac done USED=`expr "$USED" : ',\(.*\)'` - git merge -n "Merge $USED" pu $USE || exit + git pull -n . $USE || exit + # git merge -n "Merge $USED" pu $USE || exit HH=$UNUSE done exit @@ -75,7 +83,8 @@ esac for H do - (IFS=",$IFS"; git merge -n "Merge $H" pu $H) || exit +# (IFS=",$IFS"; git merge -n "Merge $H" pu $H) || exit + (IFS=",$IFS"; git pull -n . $H) || exit done -(IFS=",$IFS"; git show-branch master $* pu $ORIG_HEAD) +(IFS=",$IFS"; git show-branch master $* pu `git rev-parse --short $ORIG_HEAD`)