Browse Source

git: One more alias for counting number of lines of code

master
Nick Plekhanov 9 years ago
parent
commit
f13cdbb006
  1. 1
      shell/shell_aliases

1
shell/shell_aliases

@ -136,6 +136,7 @@ alias gf='git reflog' # allows you to see every step you have made with git allo
alias gap='git add -p' # step through each change, or hunk
alias gsl='git shortlog -sn' # quickly get a list of contributors and see how many commits each person has
alias gws='git diff --shortstat "@{0 day ago}"' # how many lines of code you have written today
alias gwts='git ls-files | xargs wc -l' # count number of lines of code in a git project
alias ggmp='git checkout -' # jump back to to your last branch
alias gst='git stash' # stash git changes and put them into your list
alias gdtp='git stash pop' # bring back your changes, but it removes them from your stash

Loading…
Cancel
Save