Skip to content

Instantly share code, notes, and snippets.

@motdotla
Created June 6, 2012 19:51
Show Gist options
  • Select an option

  • Save motdotla/2884293 to your computer and use it in GitHub Desktop.

Select an option

Save motdotla/2884293 to your computer and use it in GitHub Desktop.
committing your app to git
$ git init
$ touch .gitignore
$ echo "node_modules/" > .gitignore
$ git add .
$ git status
$ git commit -am "initial commit"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment