Skip to content

Commit 18b6748

Browse files
committed
contributing.md added
1 parent 15a6a37 commit 18b6748

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

CONTRIBUTING.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@
1515

1616
Fork this repository by clicking on the fork button on the top of this page.
1717
This will create a copy of this repository in your account.
18+
1819
<img src="https://user-images.githubusercontent.com/56690856/96425111-453c6380-1219-11eb-80f4-f46a0371ed2e.png">
1920

2021
## Clone the repository 🏁
2122

2223
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.
24+
2325
<img src="https://user-images.githubusercontent.com/56690856/96425484-b24ff900-1219-11eb-9cf0-58053ee8b758.png">
2426

2527
Open a terminal and run the following git command:
@@ -35,11 +37,8 @@ For example:
3537
```
3638
git clone https://github.com/sanscript-tech/hacking-tools-scripts
3739
```
38-
<img src="https://user-images.githubusercontent.com/56690856/96425961-3ace9980-121a-11eb-8516-8235782e86f9.png">
3940

40-
## Tech stacks used 🛴
41-
42-
**Any Scripting Language**
41+
<img src="https://user-images.githubusercontent.com/56690856/96425961-3ace9980-121a-11eb-8516-8235782e86f9.png">
4342

4443
## Create a branch ⚓
4544

@@ -48,6 +47,7 @@ Change to the repository directory on your computer (if you are not already ther
4847
```
4948
cd (filename)
5049
```
50+
5151
<img src="https://user-images.githubusercontent.com/56690856/96426111-6ea9bf00-121a-11eb-90e3-8ccc7183a6c0.png">
5252

5353
Now create a branch using the `git checkout` command:
@@ -61,7 +61,9 @@ For example:
6161
```
6262
git checkout -b dev_username
6363
```
64+
6465
<img src="https://user-images.githubusercontent.com/56690856/96426659-2a6aee80-121b-11eb-81f3-d616ae00229d.png">
66+
6567
## Make necessary changes and commit those changes 🚏
6668

6769
Do the necessary changes.
@@ -75,6 +77,8 @@ Add those changes to the branch you just created using the `git add` command:
7577
git add .
7678
```
7779

80+
<img src="https://user-images.githubusercontent.com/56690856/96427459-34412180-121c-11eb-9fa1-72cdaeae61f3.png">
81+
7882
Now commit those changes using the `git commit` command:
7983

8084
```
@@ -83,6 +87,8 @@ git commit -m "(Add your message here)"
8387

8488
replacing `<Add your message here>` with your message.
8589

90+
<img src="https://user-images.githubusercontent.com/56690856/96427464-35724e80-121c-11eb-91c2-20001f5def5a.png">
91+
8692
## Push changes to GitHub 🪂
8793

8894
Push your changes using the command `git push`:
@@ -93,10 +99,13 @@ git push origin <branch-name>
9399

94100
replacing `<branch-name>` with the name of the branch you created earlier.
95101

102+
<img src="https://user-images.githubusercontent.com/56690856/96427466-360ae500-121c-11eb-9c02-e201906a0a72.png">
103+
96104
## Submit your changes for review 🚩
97105

98106
If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
107+
<img src="https://user-images.githubusercontent.com/56690856/96427945-ce08ce80-121c-11eb-9223-a120c7d72541.png">
99108

100109
Now submit the pull request.
101110

102-
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.
111+
<img src="https://user-images.githubusercontent.com/56690856/96427954-cfd29200-121c-11eb-90f7-1f4ea2f8342f.png">

0 commit comments

Comments
 (0)