Created
December 15, 2011 06:25
-
-
Save marutanm/1480051 to your computer and use it in GitHub Desktop.
Revisions
-
marutanm revised this gist
Dec 15, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ recent = "!$SHELL -c ' \n\ n=1 \n\ 1=\"${1:-$n}\" \n\ git --no-pager log --since=\"$1\".days --author=\"`git config user.name`\" --pretty=format:\"%h - %ar : %s\" --branches --reverse\n\ ' __dummy__" # デフォルトで1日分、git recent 10 で10日分 -
marutanm revised this gist
Dec 15, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ recent = "!$SHELL -c ' \n\ n=1 \n\ 1=\"${1:-$n}\" \n\ git --no-pager log --since=\"$1\".days --author=\"`git config user.name`\" --pretty=format:\"%h - %ar : %s\" --branches --reverse\n\ ' __dummy__" # デフォルトで1日分、git recent 10 で10日分 -
marutanm revised this gist
Dec 15, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ recent = "!$SHELL -c ' \n\ n=1 \n\ 1=\"${1:-$n}\" \n\ git log --no-pager --since=\"$1\".days --author=\"`git config user.name`\" --pretty=format:\"%h - %ar : %s\" --branches --reverse\n\ ' __dummy__" # デフォルトで1日分、git recent 10 で10日分 -
marutanm revised this gist
Dec 15, 2011 . 1 changed file with 8 additions and 3 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,9 @@ [alias] recent = "!$SHELL -c ' \n\ n=1 \n\ 1=\"${1:-$n}\" \n\ git log --since=\"$1\".days --author=\"`git config user.name`\" --pretty=format:\"%h - %ad : %s\" --branches \n\ ' __dummy__" # デフォルトで1日分、git recent 10 で10日分 #参考 http://whileimautomaton.net/2009/05/08003459 -
marutanm revised this gist
Dec 15, 2011 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,4 @@ [alias] recent = "!$SHELL -c ' \n\ git log --since=${0:-1}.days --author=\"`git config user.name`\" --pretty=format:\"%h - %ad : %s\" --branches \n\ '" -
marutanm created this gist
Dec 15, 2011 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ [alias] recent = "!$SHELL -c 'git log --since=${0:-1}.days --author=\"`git config user.name`\" --pretty=format:\"%h - %ad : %s\" --branches'"