From fa1affaf3b15e4c99e047505854098e3a10eb250 Mon Sep 17 00:00:00 2001 From: 10sr Date: Sat, 24 Sep 2011 02:46:56 +0900 Subject: [PATCH] .bashrc: add some command to _mygitconfig --- .bashrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 04b4b5a..f88c0d6 100755 --- a/.bashrc +++ b/.bashrc @@ -105,9 +105,11 @@ _mygitconfig(){ git config --global user.email sr10@users.sourceforge.jp git config --global core.autocrlf false git config --global color.ui auto + git config --global status.relativePaths false + git config --global status.showUntrackedFiles no git config --global alias.log-all "log --graph --all --color --pretty='%x09%h %cn%x09%s %Cred%d%Creset'" git config --global alias.log-all2 "log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short" - git config --global alias.log-all3 "log --graph --date-order -C -M --pretty=format:\"<%h> %ad [%an] %Cgreen%d%Creset %s\" --all --date=short" + git config --global alias.graph "log --graph --date-order -C -M --pretty=format:\"<%h> %ad [%an] %Cgreen%d%Creset %s\" --all --date=short" git config --global alias.cmm "commit -m" git config --global alias.b "branch" git config --global alias.cm "commit --verbose"