Showing posts with label Git. Show all posts
Showing posts with label Git. Show all posts

Saturday, August 2, 2014

Install Git without Install Xcode on OS X

alias git="/usr/local/git/bin/git"

Saturday, April 5, 2014

Unable to auto-detect email address when using Git repository for Xcode

Need to setup Git global config first.

Open Terminal

git config --global user.email "you@example.com"
git config --global user.name "Your Name"