Skip to content

Commit

Permalink
Update CONTRIBUTION.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SurajPratap10 authored Jan 29, 2022
1 parent b2b923d commit 7214e08
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions CONTRIBUTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,27 @@


```git clone https://github.com/your_user_name/DSA-Bootcamp-Java.git```

3. Check that your fork is the "origin" remote.


```git remote add origin URL_OF_FORK```

4. Add the project repository as the "upstream" remote.

```git remote add upstream URL_OF_FORK```

3. Create a new Branch:
5. Create a new Branch:


```git branch -YourBranchName-```


```git checkout -YourBranchName-```

4. Make your contributions.
6. Make your contributions.

5. Stage your changes and make a commit.
7. Stage your changes and make a commit.


```git add .```
Expand All @@ -27,9 +35,9 @@
```git commit -m "<your_commit_message>"```


6. Push your local commits to the remote Repository.
8. Push your local commits to the remote Repository.


```git push origin -YourBranchName-```

7. Create a PR.
9. Create a PR.

0 comments on commit 7214e08

Please sign in to comment.