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