Skip to content

Instantly share code, notes, and snippets.

@shoyan
Created May 21, 2013 06:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shoyan/5617763 to your computer and use it in GitHub Desktop.
Save shoyan/5617763 to your computer and use it in GitHub Desktop.
その日の成果をコミットログとして取得する ref: http://qiita.com/items/4f355fa2482b6354de8d
function seika {
local URL="$(git remote -v | head -n 1 | sed -e 's|.*git@\(.*\):\(.*\)\.git.*|https://\1/\2|g')"; git log --pretty="%s \n $URL/commit/%H" --author="$(git config --get user.name)" --since=1.days | sed 's/\\n/\
/g'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment