|
35 | 35 | _The Event will end on **20 November 2020**.
|
36 | 36 | We will provide a **certificate** of contribution to the participant with at least **one pull request merged.**_
|
37 | 37 |
|
38 |
| -**Mentors/Maintainers of the project:-** |
39 |
| -- @tejan-singh |
40 |
| -- @yashaswibiyahut |
41 |
| -- @balapriyac |
| 38 | +**Mentors/Maintainers of the project:-** |
| 39 | +- @tejan-singh |
| 40 | +- @yashaswibiyahut |
| 41 | +- @balapriyac |
42 | 42 | - @SANKET7738
|
43 | 43 |
|
44 |
| -**_For queries regarding registration, participation, certification and rewards, reach out for help at_ |
| 44 | +**_For queries regarding registration, participation, certification and rewards, reach out for help at_ |
45 | 45 |
|
46 | 46 |
|
47 | 47 | ## Fork this repository 🚀
|
48 | 48 |
|
49 | 49 | Fork this repository by clicking on the fork button on the top of this page.
|
50 | 50 | This will create a copy of this repository in your account.
|
51 | 51 |
|
52 |
| -<img src="https://user-images.githubusercontent.com/56690856/96425111-453c6380-1219-11eb-80f4-f46a0371ed2e.png"> |
| 52 | + |
53 | 53 |
|
54 | 54 | ## Clone the repository 🏁
|
55 | 55 |
|
56 | 56 | Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon.
|
57 | 57 |
|
58 |
| -<img src="https://user-images.githubusercontent.com/56690856/96425484-b24ff900-1219-11eb-9cf0-58053ee8b758.png"> |
| 58 | + |
59 | 59 |
|
60 | 60 | Open a terminal and run the following git command:
|
61 | 61 |
|
62 |
| -``` |
| 62 | +```bash |
63 | 63 | git clone "url you just copied"
|
64 | 64 | ```
|
65 | 65 |
|
66 | 66 | where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.
|
67 | 67 |
|
68 | 68 | For example:
|
69 | 69 |
|
70 |
| -``` |
| 70 | +```bash |
71 | 71 | git clone https://github.com/sanscript-tech/hacking-tools-scripts
|
72 | 72 | ```
|
73 | 73 |
|
74 |
| -<img src="https://user-images.githubusercontent.com/56690856/96425961-3ace9980-121a-11eb-8516-8235782e86f9.png"> |
| 74 | + |
75 | 75 |
|
76 | 76 | ## Create a branch ⚓
|
77 | 77 |
|
78 | 78 | Change to the repository directory on your computer (if you are not already there):
|
79 | 79 |
|
80 |
| -``` |
| 80 | +```bash |
81 | 81 | cd (filename)
|
82 | 82 | ```
|
83 | 83 |
|
84 |
| -<img src="https://user-images.githubusercontent.com/56690856/96426111-6ea9bf00-121a-11eb-90e3-8ccc7183a6c0.png"> |
| 84 | + |
85 | 85 |
|
86 | 86 | Now create a branch using the `git checkout` command:
|
87 | 87 |
|
88 |
| -``` |
| 88 | +```bash |
89 | 89 | git checkout -b your-new-branch-name
|
90 | 90 | ```
|
91 | 91 |
|
92 | 92 | For example:
|
93 | 93 |
|
94 |
| -``` |
| 94 | +```bash |
95 | 95 | git checkout -b dev_username
|
96 | 96 | ```
|
97 | 97 |
|
98 |
| -<img src="https://user-images.githubusercontent.com/56690856/96426659-2a6aee80-121b-11eb-81f3-d616ae00229d.png"> |
| 98 | + |
99 | 99 |
|
100 | 100 | ## Make necessary changes and commit those changes 🚏
|
101 | 101 |
|
102 | 102 | Do the necessary changes.
|
103 | 103 |
|
104 | 104 | If you go to the project directory and execute the command `git status`, you'll see there are changes.
|
105 |
| -<img src="https://user-images.githubusercontent.com/56690856/96426834-6736e580-121b-11eb-9211-8b26715921ae.png"> |
| 105 | + |
106 | 106 |
|
107 | 107 | Add those changes to the branch you just created using the `git add` command:
|
108 | 108 |
|
109 |
| -``` |
| 109 | +```bash |
110 | 110 | git add .
|
111 | 111 | ```
|
112 | 112 |
|
113 |
| -<img src="https://user-images.githubusercontent.com/56690856/96427459-34412180-121c-11eb-9fa1-72cdaeae61f3.png"> |
| 113 | + |
114 | 114 |
|
115 | 115 | Now commit those changes using the `git commit` command:
|
116 | 116 |
|
117 |
| -``` |
| 117 | +```bash |
118 | 118 | git commit -m "(Add your message here)"
|
119 | 119 | ```
|
120 | 120 |
|
121 | 121 | replacing `<Add your message here>` with your message.
|
122 | 122 |
|
123 |
| -<img src="https://user-images.githubusercontent.com/56690856/96427464-35724e80-121c-11eb-91c2-20001f5def5a.png"> |
| 123 | + |
124 | 124 |
|
125 | 125 | ## Push changes to GitHub 🪂
|
126 | 126 |
|
127 | 127 | Push your changes using the command `git push`:
|
128 | 128 |
|
129 |
| -``` |
| 129 | +```bash |
130 | 130 | git push origin <branch-name>
|
131 | 131 | ```
|
132 | 132 |
|
133 | 133 | replacing `<branch-name>` with the name of the branch you created earlier.
|
134 | 134 |
|
135 |
| -<img src="https://user-images.githubusercontent.com/56690856/96427466-360ae500-121c-11eb-9c02-e201906a0a72.png"> |
| 135 | + |
136 | 136 |
|
137 | 137 | ## Submit your changes for review 🚩
|
138 | 138 |
|
139 | 139 | If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
|
140 |
| -<img src="https://user-images.githubusercontent.com/56690856/96427945-ce08ce80-121c-11eb-9223-a120c7d72541.png"> |
| 140 | + |
141 | 141 |
|
142 | 142 | Now submit the pull request.
|
143 | 143 |
|
144 |
| -<img src="https://user-images.githubusercontent.com/56690856/96427954-cfd29200-121c-11eb-90f7-1f4ea2f8342f.png"><br><br> |
| 144 | + |
145 | 145 |
|
146 | 146 | Soon we will be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.
|
0 commit comments