X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=%2Bbin%2Fgit-up;h=35e0e9df2a7746aa53c9b9cf5fd5e8a06329bb27;hb=2af82e92637833473bb7419b34ca7c9b8304dc54;hp=06a2c71ff944bf4bc4377f19407e731f4b14882e;hpb=5923f706617b966f114656c78bd60108d4ab1dde;p=~madcoder%2Fdotfiles.git diff --git a/+bin/git-up b/+bin/git-up index 06a2c71..35e0e9d 100755 --- a/+bin/git-up +++ b/+bin/git-up @@ -8,7 +8,7 @@ r,rebase perform a rebase m,merge perform a merge " SUBDIRECTORY_OK=t -. git-sh-setup +. "$(git --exec-path)/git-sh-setup" require_work_tree lbranch=$(git symbolic-ref HEAD | sed -e s~refs/heads/~~) @@ -69,16 +69,20 @@ if test -z "$action"; then esac fi +no_changes () { + git diff-index --quiet --cached HEAD --ignore-submodules -- && + git diff-files --quiet --ignore-submodules +} + unclean= -git rev-parse --verify HEAD > /dev/null && \ - git update-index --refresh && \ - git diff-files --quiet && \ - git diff-index --cached --quiet HEAD -- || unclean=t +no_changes || unclean=t + case "$action" in rebase) test -z "$unclean" || git stash save "git-up stash" git rebase "${remote}/${branch#refs/heads/}" + cd "$(dirname "$(git rev-parse --git-dir)")" && git submodule update --rebase ;; merge) test -z "$unclean" || git stash save "git-up stash" @@ -95,6 +99,6 @@ if test -n "$unclean"; then echo "" echo "run 'git stash apply' when rebase is finished" else - git stash apply + git stash pop fi fi