- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass_notes
More file actions
Latest commit
22 lines (16 loc) · 565 Bytes
/
Copy pathclass_notes
File metadata and controls
22 lines (16 loc) · 565 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
Notes:
#docker
#github will tell you when it can't merge things
#you have to resolve manually
#VSC has a merge contradiction editor
#Rebasing from main (put in changes as they occurred chronologically)
#Merge main into your branch consistently is the smartest thing to do
#Create new branch: git branch develop
#Can just use publish branch, or
#git pull before pushing every time
#make branch of branch with:
# git checkout branch1
# git checkout -b name_of_branch_of_branch1
#Use linters to automatically check your coding conventions
"""