To download this repo run the following command or use the git features of your IDE.
git clone <url of repo>
- Commit as often as possible
- Write useful commit messages
- Each partner needs at least 3 substantial commits
- Every time you sit down to work run
git pullto make sure you have your partner's changes - Every time you commit and whenever you are done working for the day run
git pushto make sure your partner has your changes - DO NOT remove or comment out parts of the gitignore. You may add to it.
- DO NOT commit non-code files
- DO NOT use the GitHub website to make commits or modify files. If you are unable to use git locally please come to office hours
- DO NOT make branches, pull requests, or issues
git pull origin master# This command helps you to sycn your local with remotegit add XX# This command helps you to add your changes to the stagegit commit -m "your comments"# This command helps you to commit a change to your local git repogit push origin master# This command helps you to sycn the remote git repo with your local git repo, i.e. to push your changes to Github
Please follow the steps above when you develop.