Skip to content

info343-au16/challenges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

INFO 343 Challenges

This repository contains projects completed as challenges for the Client Side Web Development course at the UW iSchool.

How to Use

See the Git Challenge page for details about getting started with this repository.

Getting Changes from the Upstream Repository

The original version of this repository may update throughout the quarter. Any copies or forks of this repo will thus need to pull in changes from the "upstream" original in order to merge in those changes. Follow these steps to do so:

First execute the following to see your current set of remotes:

git remote -v

If there is a remote named upstream listed, then you have already added the upstream remote. If you don't see a remote named upstream, execute this command to add it:

git remote add upstream https://github.com/info343-au16/challenges.git

Now use git to pull any new commits that have been made to the upstream remote's master branch:

git pull upstream master

This will fetch the new commits and merge them into your repository files (you will need to resolve any resulting merge conflicts).

After that finishes, you can push your changes (that now include merging in the new starter code) back up to your forked repository (the origin) using the command:

git push origin

About

Starter code for INFO 343 challenges

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors