mirror of
https://gitea.zaclys.com/yannic/dotfiles.git
synced 2026-06-15 11:11:57 +02:00
git alias: untrack to remove local branches
This commit is contained in:
@@ -19,6 +19,7 @@
|
|||||||
p = push -u origin
|
p = push -u origin
|
||||||
s = status
|
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 | grep -v master); 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}
|
work-in-progress = rebase -i @{u}
|
||||||
[include]
|
[include]
|
||||||
path = ~/.gitconfig_custom.inc
|
path = ~/.gitconfig_custom.inc
|
||||||
|
|||||||
Reference in New Issue
Block a user