We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 106032c commit e1248c8Copy full SHA for e1248c8
my notes.md
@@ -0,0 +1,17 @@
1
+First time only setup:
2
+```bash
3
+$ git clone https://github.com/mhered/challenges -b community && cd challenges
4
+$ git remote add upstream https://github.com/pybites/challenges
5
+```
6
+Init for every new challenge:
7
8
+$ git checkout community # return to community branch
9
+$ git pull upstream community # pull the latest upstream repo
10
+$ git checkout -b PCC45 # create a branch to work on the challenge
11
+$ mkdir 45/mhered && cd $_ # work on your own subdirectory
12
13
+Commit and push code:
14
15
+$ git add . && git commit -m 'PCC45 mhered' # commit
16
+$ git push origin PCC45 # push to your fork
17
0 commit comments