Git
Last updated
Was this helpful?
Last updated
Was this helpful?
What's a developer without ? To install, simply run:
When done, to test that it installed fine you can run:
And which git
should output/usr/local/bin/git
. If not, try restarting the terminal.
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). So you don't have to type your username and password every time, let's enable Git password caching as described :
You can generate ssh keys for your machine by running
Then, press enter thrice.
You can checkout your public key by navigating to
Type ls -a
and you should be seeing id_rsa (your private key) and id_rsa.pub (your public key)
Then type cat id_rsa.pub
to see your public key so you could copy paste it to your Github/Bitbucket