Skip to content

Commit 7214e08

Browse files
Update CONTRIBUTION.md
1 parent b2b923d commit 7214e08

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

CONTRIBUTION.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,27 @@
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 .```
@@ -27,9 +35,9 @@
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.

0 commit comments

Comments
 (0)