diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-05-04 21:47:26 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2012-05-04 21:47:26 +0200 |
commit | 83e163be220ccb93197e38153570b84ce64c2479 (patch) | |
tree | b4cf7924518a4ab22bc189c89eba5023f1b15bcd | |
parent | e49071ac0a2c2f8a3660a94bbbc9d457331d6ad9 (diff) | |
download | dotfiles-83e163be220ccb93197e38153570b84ce64c2479.tar.gz dotfiles-83e163be220ccb93197e38153570b84ce64c2479.tar.xz dotfiles-83e163be220ccb93197e38153570b84ce64c2479.zip |
bashrc/main: old-origin should not be tracking
-rw-r--r-- | bashrc/main.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc/main.sh b/bashrc/main.sh index c78f500..3c769b7 100644 --- a/bashrc/main.sh +++ b/bashrc/main.sh @@ -15,7 +15,7 @@ _self_update() { # save the origin, the current master is based of if ! git branch | grep old-origin -q; then - git branch old-origin origin/master + git branch --no-track old-origin origin/master >/dev/null 2>&1 fi if hash timeout >/dev/null 2>&1; then |