Skip to content

Commit 81aefaa

Browse files
committed
first commit
0 parents  commit 81aefaa

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This is CS50W
2+
3+
Each pset is kept in a separate branch
4+
5+
6+
7+
REMINDER TO MYSELF:
8+
To commit a new problem new branch must be created
9+
10+
Example:
11+
```
12+
git checkout --orphan web50/projects/2020/x/0
13+
# A file must be added or copied into the working dir or branch won't be created
14+
touch index.html
15+
git rm -rf .
16+
index.html
17+
git add index.html
18+
git commit -m 'initial commit'
19+
```

0 commit comments

Comments
 (0)