File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed
Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 66
77
88 ``` git clone https://github.com/your_user_name/DSA-Bootcamp-Java.git ```
9+
10+ 3 . Check that your fork is the "origin" remote.
11+
12+
13+ ``` git remote add origin URL_OF_FORK ```
14+
15+ 4 . Add the project repository as the "upstream" remote.
916
17+ ``` git remote add upstream URL_OF_FORK ```
1018
11- 3 . Create a new Branch:
19+ 5 . Create a new Branch:
1220
1321
1422 ``` git branch -YourBranchName- ```
1523
1624
1725 ``` git checkout -YourBranchName- ```
1826
19- 4 . Make your contributions.
27+ 6 . Make your contributions.
2028
21- 5 . Stage your changes and make a commit.
29+ 7 . Stage your changes and make a commit.
2230
2331
2432 ``` git add . ```
2735 ``` git commit -m "<your_commit_message>" ```
2836
2937
30- 6 . Push your local commits to the remote Repository.
38+ 8 . Push your local commits to the remote Repository.
3139
3240
3341 ``` git push origin -YourBranchName- ```
3442
35- 7 . Create a PR.
43+ 9 . Create a PR.
You can’t perform that action at this time.
0 commit comments