Skip to content

Commit

Permalink
Add more notes on git push command
Browse files Browse the repository at this point in the history
  • Loading branch information
makeasnek committed Oct 30, 2023
1 parent c701005 commit cedf65c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ For installation of Jekyll, please follow the [installation guide](https://jekyl

5. `git branch your_branch_name` (give it a descriptive name like "whitelist changes") followed by `git checkout your_branch_name`

6. Every time you make changes, run `git commit -a` to add your changes followed by `git push` to push them to your repo on github.com.
6. Every time you make changes, run `git commit -a` to add your changes followed by `git push` to push them to your repo on github.com. The first time you push, you'll need to run `git push --set-upstream origin your_branch_name` first to let Github.com know about your new branch.

7. `bundle install` (runs the web server for local previewing)

Expand All @@ -40,7 +40,7 @@ For installation of Jekyll, please follow the [installation guide](https://jekyl

5. `git branch your_branch_name` (give it a descriptive name like "whitelist changes") followed by `git checkout your_branch_name`

6. Every time you make changes, run `git commit -a` to add your changes followed by `git push` to push them to your repo on github.com.
6. Every time you make changes, run `git commit -a` to add your changes followed by `git push` to push them to your repo on github.com. The first time you push, you'll need to run `git push --set-upstream origin your_branch_name` first to let Github.com know about your new branch.

7. Run `bundle install` (runs the web server for local previewing)

Expand Down

0 comments on commit cedf65c

Please sign in to comment.