Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.DS_Store
.venv/
7 changes: 7 additions & 0 deletions 03_git_github/notes/day3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### What I learned about Git
- How to creat a new branch for each task using 'Git checkout -b',and why it is important to keep work isolated.
- How to stay updated by syncing with the main course repo using 'git fetch upstream', 'git merge upstream/main',and then 'git push origin main'.
- How to stage, commit, and push changes and finally open a Pull Request(PR) to share my work.

### My question
- When should I use 'rebase' instead of 'merge'?
Loading