mirror of
https://gitea.zaclys.com/yannic/dotfiles.git
synced 2026-06-15 11:11:57 +02:00
git fetch --prune and don't exclude master from git track
This commit is contained in:
+2
-2
@@ -13,12 +13,12 @@
|
||||
cd = checkout develop
|
||||
cm = checkout master
|
||||
cp = cherry-pick
|
||||
f = fetch
|
||||
f = fetch -p
|
||||
m = merge
|
||||
nb = checkout -b
|
||||
p = push -u origin
|
||||
s = status
|
||||
track = "!for BRANCH in $(git branch -a | grep remotes | grep -v HEAD | grep -v master); do git branch --track \"${BRANCH#remotes/origin/}\" \"${BRANCH}\"; done"
|
||||
track = "!for BRANCH in $(git branch -a | grep remotes | grep -v HEAD); do git branch --track \"${BRANCH#remotes/origin/}\" \"${BRANCH}\"; done"
|
||||
untrack = "!for BRANCH in $(git branch | grep -v '*'); do git branch -D \"${BRANCH}\"; done"
|
||||
work-in-progress = rebase -i @{u}
|
||||
[include]
|
||||
|
||||
Reference in New Issue
Block a user