One-stop shopping for the supporting material for our meet ups where we try to improve our skills.
We will try to add any code from our sessions here. Hopefully, we can provided starter code, but it will be available after each session.
Feel free to fork/clone this repository in order to follow along during any of the session or experiment on your own. We recommend creating your own branch
to avoid conflicts when you pull
for updated content.
For independent coding use:
git checkout -b <branch name>
To clone the repository, navigate to your directory of choice and run the command:
git clone https://github.com/Code-with-Us/sessions.git
As previously stated, we recommend reserving the master branch for content updates, but feel free to do as you will.
Via pull:
- Checkout the master branch or another if you choose.
git checkout <master | branchName>
- Then pull:
git pull origin master
Via fetch:
- Fetch
git fetch origin master
- Checkout the branch to hold the update.
git checkout <master | branchName>
- Merge
git merge origin/master
- Click fork in this repository to get your own personal copy in your Github repository.
- Clone your version locally to your machine.
git clone <repo url>
- Add this repository as an upstream remote.
git remote add upstream https://github.com/Code-with-Us/sessions.git
Via pull:
- Checkout the master branch or another if you choose.
git checkout <master | branchName>
- Then pull:
git pull upstream master
- [Optional] Push updates to your remote.
git push origin <master | branchName>
Via fetch:
- Fetch
git fetch upstream master
- Checkout the branch to hold the update.
git checkout <master | branchName>
- Merge
git merge upstream/master
- [Optional] Push updates to your remote.
git push origin <master | branchName>