docs:git:starting_a_new_project

This is an old revision of the document!


starting a new project

  • if this is the first time you are using git on this machine, tell it your information
    git config --global user.name "Your Name"
    git config --global user.email "Your Email"
  • change inside your project directory (or make a new folder if this is from scratch)
  • create the git repository (the .git folder)
    git init
  • add the project contents
    git add .
  • make the initial commit
    git commit -a
  • docs/git/starting_a_new_project.1257534681.txt.gz
  • Last modified: 2009/11/06 12:11
  • by billh