Skip to content

Instantly share code, notes, and snippets.

@joallard
Created March 9, 2012 03:22
Show Gist options
  • Save joallard/2004844 to your computer and use it in GitHub Desktop.
Save joallard/2004844 to your computer and use it in GitHub Desktop.
Howto git
# Initial setup
$ git config --global user.name "Bob Sponge"
$ git config --global user.email "bob.sponge@spongebob.com"
$ 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