Code-with-Us / sessions

One-stop shopping for the supporting material for our meet ups where we try to improve our skills.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sessions

One-stop shopping for the supporting material for our meet ups where we try to improve our skills.

Code along

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>

Updates

Clone

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.

To Sync

Via pull:

  1. Checkout the master branch or another if you choose.
    git checkout <master | branchName>
  2. Then pull:
    git pull origin master

Via fetch:

  1. Fetch
    git fetch origin master
  2. Checkout the branch to hold the update.
    git checkout <master | branchName>
  3. Merge
    git merge origin/master

Fork

  1. Click fork in this repository to get your own personal copy in your Github repository.
  2. Clone your version locally to your machine.
    git clone <repo url>
  3. Add this repository as an upstream remote.
     git remote add upstream https://github.com/Code-with-Us/sessions.git

To Sync

Via pull:

  1. Checkout the master branch or another if you choose.
    git checkout <master | branchName>
  2. Then pull:
    git pull upstream master
  3. [Optional] Push updates to your remote.
     git push origin <master | branchName>

Via fetch:

  1. Fetch
    git fetch upstream master
  2. Checkout the branch to hold the update.
    git checkout <master | branchName>
  3. Merge
    git merge upstream/master
  4. [Optional] Push updates to your remote.
     git push origin <master | branchName>

About

One-stop shopping for the supporting material for our meet ups where we try to improve our skills.


Languages

Language:JavaScript 64.9%Language:HTML 35.1%