Step in my room. Here is where I co-created http://clumsyandthestars.com/. While you’re here, I hope we both learn something new, be it related to coding, iOS development, good UX, entrepreneurship, happiness, Python, jQuery, good food or cars.
Cheers,
Tudor
Download
Clumsy And The Stars:
Find me while:
TweetingDribbblingFacebook-ingSocial CodingLinkedIn-ingSharing codePlus-ingE-mailing
.gitconfig tweaks
I stumbled across this stackover flow page discussing cool ways to configure your git experience. I never knew about the output coloring options and it’s changed my life already - for five minutes so far.
I recommend reading the whole page, but I recommend putting the following code at the bottom of your .gitconfig immediately. The screenshot above shows you what you get for it.
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
pager = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
Another addition