Git
Last updated
Was this helpful?
Last updated
Was this helpful?
What's a developer without ? To install, run:
When done, to test that it installed properly you can run:
And which git
should output /usr/local/bin/git
.
Next, we'll define your Git user (should be the same name and email you use for ):
They will get added to your .gitconfig
file.
To push code to your GitHub repositories, we're going to use the recommended HTTPS method (versus SSH). To prevent git
from asking for your username and password every time you push a commit you can cache your credentials by running the following command, as described in the .
The instructions below are referenced from .
First, we need to check for existing SSH keys on your computer. We do this by running:
Check the directory listing to see if you have files named either id_rsa.pub
or id_dsa.pub
. If you don't have either of those files then read on, otherwise skip the next section.
If you don't have an SSH key you need to generate one. To do that you need to run the commands below, and make sure to substitute the placeholder with your email. The default settings are preferred, so when you're asked to "enter a file in which to save the key,"" just press Enter to continue.