Skip to content

Latest commit

 

History

History
17 lines (17 loc) · 594 Bytes

my notes.md

File metadata and controls

17 lines (17 loc) · 594 Bytes

First time only setup:

$ git clone https://github.com/mhered/challenges -b community && cd challenges
$ git remote add upstream https://github.com/pybites/challenges

Init for every new challenge:

$ git checkout community # return to community branch
$ git pull upstream community # pull the latest upstream repo
$ git checkout -b PCC45 # create a branch to work on the challenge
$ mkdir 45/mhered && cd $_ # work on your own subdirectory

Commit and push code:

$ git add . && git commit -m 'PCC45 mhered' # commit 
$ git push origin PCC45 # push to your fork