Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kiebekierror/cc3b6c7e8c65f886ddbb24aa72ac027f to your computer and use it in GitHub Desktop.

Select an option

Save kiebekierror/cc3b6c7e8c65f886ddbb24aa72ac027f to your computer and use it in GitHub Desktop.
Git

查看 git 日志

git log --author="NovusLio" --pretty=tformat: --numstat --since=1.day.ago | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment