Created
March 9, 2012 03:22
-
-
Save joallard/2004844 to your computer and use it in GitHub Desktop.
Howto git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Initial setup | |
$ git config --global user.name "Bob Sponge" | |
$ git config --global user.email "[email protected]" | |
$ cd project/ | |
$ git init | |
$ git add . | |
$ git commit -am "initial commit" | |
$ git add remote or whatever??? # suivre instructions sur github | |
$ git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment