From fdc8afcd198ebaefe8b17388f85fab801251b7fa Mon Sep 17 00:00:00 2001 From: Dan Croak Date: Mon, 24 Oct 2011 10:30:50 -0400 Subject: [PATCH] adding a global .gitconfig that by default tracks branches (so you can 'git push' from a branch it only pushes to the tracking branch you're in) and also provides a tighter, more colorful git log --- gitconfig | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 gitconfig diff --git a/gitconfig b/gitconfig new file mode 100644 index 0000000000..eec803b5ab --- /dev/null +++ b/gitconfig @@ -0,0 +1,4 @@ +[push] + default = tracking +[format] + pretty = %Cblue%h%Creset %Cgreen[%ar]%Creset (%an) %s