Skip to content

Commit 00a1c0a

Browse files
committed
Added alternative git workflow to README.md
1 parent 0bd0f5e commit 00a1c0a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,16 @@ Hold down the `control` key and press the `~` key (right below the `esc` key).
1717
- `git commit -m "<tell people what you just did with your code>"`
1818
- `git push` (may need to do `git push origin <the name of your branch>` if that failed)
1919
- Go to github.com and create a *pull request* (from your branch into the main branch)
20-
- Rinse and repeat
20+
- Rinse and repeat
21+
22+
## Another way to use git:
23+
- `git checkout <the name of your branch>`
24+
- *DO WORK*
25+
- `git add .`
26+
- `git commit -m "<tell people what you just did with your code>"`
27+
- `git fetch`
28+
- `git merge origin/main`
29+
- (fix any "merge conflicts" if they exist)
30+
- `git push` (may need to do `git push origin <the name of your branch>` if that failed)
31+
- Go to github.com and create a *pull request* (from your branch into the main branch)
32+
- Rinse and repeat

0 commit comments

Comments
 (0)