You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alias gll='git log --graph --pretty=oneline --abbrev-commit'
84
84
alias gnew='git log HEAD@{1}..HEAD@{0}'# Show commits since last pull, see http://blogs.atlassian.com/2014/10/advanced-git-aliases/
85
85
alias gwc='git whatchanged'
86
-
alias ghist='git log --pretty=format:'\''%h %ad | %s%d [%an]'\'' --graph --date=short'# Use it to be fast and without color.
86
+
alias ghist='git log --pretty=format:'\''%h %ad | %s%d [%an]'\'' --graph --date=short'# Use it to be fast and without color.
87
87
alias gprogress='git log --pretty=format:'\''%C(yellow)%h %Cblue%ad %Creset%s%Cgreen [%cn] %Cred%d'\'' --decorate --date=short'#Usually use "git progress" in the file .gitconfig. The new alias from Git friends will be truly welcome.
88
88
89
89
# ls-files
@@ -153,8 +153,8 @@ alias grma='GIT_SEQUENCE_EDITOR=: git rebase $(get_default_branch) -i --autosqu
153
153
alias gprom='git fetch origin $(get_default_branch) && git rebase origin/$(get_default_branch) && git update-ref refs/heads/$(get_default_branch) origin/$(get_default_branch)'# Rebase with latest remote
154
154
155
155
# reset
156
-
alias gus='git reset HEAD'# read as: 'git unstage'
157
-
alias grh='git reset'# equivalent to: git reset HEAD
156
+
alias gus='git reset HEAD'# read as: 'git unstage'
157
+
alias grh='git reset'# equivalent to: git reset HEAD
158
158
alias grh!='git reset --hard'
159
159
alias gpristine='git reset --hard && git clean -dfx'
0 commit comments