Open Source Comes to Campus/Curriculum/Laptop setup/OSX git: Difference between revisions

Recommend git-scm.com for Mac
imported>Paulproteus
(Adding Mac instructions)
 
(Recommend git-scm.com for Mac)
 
(11 intermediate revisions by 4 users not shown)
Line 1:
Git sometimes comes pre-installed on Mac. To see if this is true for your machine, type in [[OSCTC_Resources/OSX_command_line#Open_a_command_prompt: | a terminal]]:
== The install depends on your version of Mac OS ==
 
git --version
For Mac OS Snow Leopard (10.6) or Lion (10.7):
 
If this returns a version number, such as:
* Install this DMG: http://git-osx-installer.googlecode.com/files/git-1.8.1.2-intel-universal-snow-leopard.dmg
 
git version 1.7.9.5
 
Great, you have git installed! If it returns some kind of error, such as "No command 'git' found", go ahead and install it.
 
== Downloading git if needed ==
 
For other versions of Mac OS:
 
* GoVisit through this [httphttps://code.googlegit-scm.com/pdownload/git-osx-installer/downloads/listmac longand listdownload ofthe options]DMG. and pickOpen the onedisk best-suitedimage toand yourfollow the computerinstructions. If you're not sure what to do, ask an instructor.
 
== Set your user name and email ==
 
You'll also want to tell git your name and email address. To do this, open a terminal and type:
 
git config --global user.name "your-user-name"
git config --global user.email "your email"
 
You can test that they've successfully been set by typing:
 
git config --global user.name
git config --global user.email
 
== Sign up for a Github account ==
 
You can do so at [https://github.com/users this link].
 
== Back to laptop setup ==