Skip to content

nicklombardi/WDI_Summer_Public

 
 

Repository files navigation

WDI_Summer_Public

Public links, notes, and code examples for General Assembly's June WDI Class.

Feel free to suggest changes via Pull Requests

How To

To get started, fork this repo in Github.

How to fork this repo

Clone the repo from your account:

git clone https://github.com/YOUR-USERNAME/WDI_Summer_Public.git
# Clones your fork of the repository into the current directory in terminal, with your username

Configure this primary repo as a remote

cd WDI_Summer_Public
# Changes the active directory in the prompt to the newly cloned "WDI_Summer_Public" directory
git remote add upstream https://github.com/tibbon/WDI_Summer_Public.git
# Assigns the original repository to a remote called "upstream"

Update your local repo with changes from this one with:

git fetch upstream
# Pulls in changes not present in your local repository, without modifying your files
git merge upstream/master
# Merges any changes fetched into your working files
git push origin master
# Then push everything up to YOUR github repository

To make contributions:

git add .
git commit -m "Description of change made"
git push origin master

And then issue a Pull Request from Github.

About

Public links, notes, and code examples for General Assembly's June WDI Class

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 73.0%
  • Ruby 23.3%
  • CSS 3.5%
  • CoffeeScript 0.2%