1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 21:45:10 +01:00

New alias for git push all, 'gp' just pushes currect branch

This commit is contained in:
2016-09-02 15:32:45 +02:00
parent 250f019a77
commit 50735ab749
2 changed files with 4 additions and 2 deletions

View File

@@ -69,7 +69,8 @@ alias gl='git log'
alias gst='git status'
alias gt='git tag|less'
alias ga='git add -A'
alias gp='git push --all --follow-tags'
alias gp='git push --follow-tags'
alias gpa='git push --all --follow-tags'
alias gu='git pull --all'
# git activity per week day:
# git log --pretty='%at' | while read d; do date -d "@$d"; done | awk '{print $1}' | sort | uniq -c

View File

@@ -34,7 +34,8 @@ alias lll 'ls --color=always -alF | less -R'
## Git
alias gu "git pull --all"
alias gp "git push --all; git push --tags"
alias gp "git push; git push --tags"
alias gpa "git push --all; git push --tags"
alias gc "git commit"
alias gca "git commit -a"
alias gd "git diff"