Skip track checks for merge-commit.
[git-scripts.git] / git-svnup
blob187bdf8fcc191118dc58d8eae8757e2ba6de4ee0
1 #!/bin/bash
3 if [[ "$(git stash)" == "No local changes to save" ]]; then
4 NO_STASH=true
5 fi
6 git svn rebase
8 if [[ "$NO_STASH" != "true" ]]; then
9 git stash pop