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 gl='git log --date=short --pretty=format:"%Cred%h %Cblue%ad %Cgreen%an%Creset %s" -12'
# git log (short)
alias gls='git log --pretty=format:"%Cred%h %Cgreen%an%Creset %s" -12'
# git status
alias gs='git status'
# Pull in all local working copies that are immediate children of the current working directory
alias pull-all='for x in * ; do if [ -d $x/.git ] ; then ( cd $x ; s=$(git status -s); if [ -z "$s" ] ; then echo "Update $x." ; git pull ; else echo "$x is modified; skipping update." ; fi ) fi done'