@@ -21,33 +21,38 @@ Questions can be asked by raising an `Issue`.
21
21
## How to clone repo and make changes locally
22
22
23
23
```
24
- click on the clone button (green in colour).
24
+ click on the clone button (green in colour). This gives you a copy of the project. Its now yours to play around with
25
25
```
26
26
27
- - Using git on your local machine
27
+ - Using git on your local machine. Do this to download the forked copy of this repo to your computer
28
28
29
29
```
30
- git clone https://github.com/eddiejaoude /hacktoberfest-practice.git
30
+ git clone https://github.com/yourGithubUsername /hacktoberfest-practice.git
31
31
```
32
32
33
- - switch to the cloned folder
33
+ - switch to the cloned folder. This can be done with Gitbash or the integrated terminal in the VSCode editor
34
34
35
35
```
36
36
cd hacktoberfest-practice
37
37
```
38
38
39
- - Make a new branch
39
+ - Make a new branch. Your name would make a good branch because it's unique
40
40
41
41
```
42
42
git checkout -b <name of new branch>
43
43
```
44
44
45
- - Make changes in your repo
45
+ - Open the file ` README.md `
46
+
47
+ - On a new line in alphabetical order, add your name and a link to your Github profile
48
+
49
+ - For example ,
50
+ ` [Full Name](https://github.com/your-username) `
51
+
52
+ - Stage your changes
46
53
47
54
```
48
- touch text.txt
49
- echo "Hallo world" > text.txt
50
- git add text.txt
55
+ git add README.md
51
56
```
52
57
53
58
- Commit the changes
@@ -56,7 +61,7 @@ Questions can be asked by raising an `Issue`.
56
61
git commit -m "Initial commit"
57
62
```
58
63
59
- - Check the staus of your repository
64
+ - Check the status of your repository
60
65
61
66
```
62
67
git status
@@ -68,12 +73,17 @@ Questions can be asked by raising an `Issue`.
68
73
git push origin <name of your branch>
69
74
```
70
75
71
- - Pulling your request
76
+ - Pulling your request. Click on the Pull requests tab on the forked github repository.
77
+ Note : A pull request allows your changes to be merged with the original project.
72
78
73
79
```
74
80
click on pull request
75
81
```
76
82
83
+ - Wait for your changes to be merged.
84
+
85
+ - Hurray! You successfully made a contribution
86
+
77
87
## Hacktoberfest community
78
88
79
89
- [ Aakarsh Teja] ( https://github.com/aakarshteja )
0 commit comments