Code Challenges for weekly Cohort Meetings
- Create a new repository with a name for your Pod Group
- Clone it locally
- Set your remote upstream:
git remote add upstream git@github.com:<github_username>/<repo_name>.git
- Create a new branch: git checkout -b branch-name
- Make any change to the repo locally and save it
- Stage and Commit the change
git add .
git commit -m 'first commit'
- Push the change to your remote repo
git push origin branch-name
- open a pull request for the change on github
- After the pr is accepted, make sure your local repo is up to date with the remote upstream:
git pull upstream master
- And also make sure your remote repo is up to date with your local repo:
git push origin master