Updates fork and clone instructions.

This commit is contained in:
John Washam 2022-08-23 19:13:41 -07:00
parent bae2bc402f
commit 7c6679f7ac
1 changed files with 8 additions and 4 deletions

View File

@ -269,25 +269,29 @@ If you're open in a code editor that understands markdown, you'll see everything
Create a new branch so you can check items like this, just put an x in the brackets: [x]
Fork a branch and follow the commands below
1. ***Fork the GitHub repo:*** `https://github.com/jwasham/coding-interview-university` by clicking on the Fork button.
Fork the GitHub repo https://github.com/jwasham/coding-interview-university by clicking on the Fork button.
![Fork the GitHub repo](https://d3j2pkmjtin6ou.cloudfront.net/fork-button.png)
Clone to your local repo:
1. Clone to your local repo:
```
git clone git@github.com:<your_github_username>/coding-interview-university.git
cd coding-interview-university
git checkout -b progress
git remote add jwasham https://github.com/jwasham/coding-interview-university
git fetch --all
```
Mark all boxes with X after you completed your changes:
1. Mark all boxes with X after you completed your changes:
```
git add .
git commit -m "Marked x"
git rebase jwasham/main
git push --set-upstream origin progress
git push --force
```
## Don't feel you aren't smart enough