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 6
6
7
7
8
8
``` 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.
9
16
17
+ ``` git remote add upstream URL_OF_FORK ```
10
18
11
- 3 . Create a new Branch:
19
+ 5 . Create a new Branch:
12
20
13
21
14
22
``` git branch -YourBranchName- ```
15
23
16
24
17
25
``` git checkout -YourBranchName- ```
18
26
19
- 4 . Make your contributions.
27
+ 6 . Make your contributions.
20
28
21
- 5 . Stage your changes and make a commit.
29
+ 7 . Stage your changes and make a commit.
22
30
23
31
24
32
``` git add . ```
27
35
``` git commit -m "<your_commit_message>" ```
28
36
29
37
30
- 6 . Push your local commits to the remote Repository.
38
+ 8 . Push your local commits to the remote Repository.
31
39
32
40
33
41
``` git push origin -YourBranchName- ```
34
42
35
- 7 . Create a PR.
43
+ 9 . Create a PR.
You can’t perform that action at this time.
0 commit comments