Skip to content

h3llborn/2211

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

CS 2211 - Code Bank

Repo contains code for study questions.

The easiest way to submit new code is by creating pull requests.

How To Contribute

  • Install Git on your device.

  • Create a github account

  • Fork the Repo to your profile.

  • Clone your fork to your computer

      git clone https://github.com/YOURUSERNAME/2211.git
    
  • Add upstream to remote github directory

      git remote add upstream https://github.com/h3llborn/2211.git
      git fetch --all
      git pull --rebase upstream master
      git push
    
  • Create a branch to work on, name it after the program

      git checkout -b PROGRAMNAME master
      git clean -df
      git pull --rebase upstream
    
  • Push just created branch to your repo as backup

      git push origin PROGRAMNAME
    
  • Now that you have created your branch to work on, make changes to the code

  • Next Stage them

      git status
      git add -A
    
  • Commit changes & pull updates

      git commit -m "Programname: what you did"
      git push
      git pull --rebase upstream master
      git checkout master
      git pull --rebase upstream master
    
  • On your github submit a 'pull request' of your branch to the main repo. About pull-requests

About

UWO Computer Science Course 2211 Exam Review

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published