Skip to content

Commit e1248c8

Browse files
committed
PCC45 mhered
1 parent 106032c commit e1248c8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

my notes.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
```bash
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+
```bash
15+
$ git add . && git commit -m 'PCC45 mhered' # commit
16+
$ git push origin PCC45 # push to your fork
17+
```

0 commit comments

Comments
 (0)