Skip to content

Commit ed688d7

Browse files
committed
correct MD syntax and remove trailing whitespaces.
1 parent 10e3d6f commit ed688d7

File tree

4 files changed

+45
-28
lines changed

4 files changed

+45
-28
lines changed

Diff for: .github/ISSUE_TEMPLATE/feature_request.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
9+
10+
**Describe the solution you'd like**
11+
<!-- A clear and concise description of what you want to happen. -->
12+
13+
**Describe alternatives you've considered**
14+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
15+
16+
**Additional context**
17+
<!-- Add any other context or screenshots about the feature request here. -->
File renamed without changes.

Diff for: CONTRIBUTING.md

+24-24
Original file line numberDiff line numberDiff line change
@@ -35,112 +35,112 @@
3535
_The Event will end on **20 November 2020**.
3636
We will provide a **certificate** of contribution to the participant with at least **one pull request merged.**_
3737

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
4242
- @SANKET7738
4343

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_
4545
4646

4747
## Fork this repository 🚀
4848

4949
Fork this repository by clicking on the fork button on the top of this page.
5050
This will create a copy of this repository in your account.
5151

52-
<img src="https://user-images.githubusercontent.com/56690856/96425111-453c6380-1219-11eb-80f4-f46a0371ed2e.png">
52+
![forking](https://user-images.githubusercontent.com/56690856/96425111-453c6380-1219-11eb-80f4-f46a0371ed2e.png)
5353

5454
## Clone the repository 🏁
5555

5656
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.
5757

58-
<img src="https://user-images.githubusercontent.com/56690856/96425484-b24ff900-1219-11eb-9cf0-58053ee8b758.png">
58+
![cloning](https://user-images.githubusercontent.com/56690856/96425484-b24ff900-1219-11eb-9cf0-58053ee8b758.png)
5959

6060
Open a terminal and run the following git command:
6161

62-
```
62+
```bash
6363
git clone "url you just copied"
6464
```
6565

6666
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.
6767

6868
For example:
6969

70-
```
70+
```bash
7171
git clone https://github.com/sanscript-tech/hacking-tools-scripts
7272
```
7373

74-
<img src="https://user-images.githubusercontent.com/56690856/96425961-3ace9980-121a-11eb-8516-8235782e86f9.png">
74+
![cloning to local](https://user-images.githubusercontent.com/56690856/96425961-3ace9980-121a-11eb-8516-8235782e86f9.png)
7575

7676
## Create a branch ⚓
7777

7878
Change to the repository directory on your computer (if you are not already there):
7979

80-
```
80+
```bash
8181
cd (filename)
8282
```
8383

84-
<img src="https://user-images.githubusercontent.com/56690856/96426111-6ea9bf00-121a-11eb-90e3-8ccc7183a6c0.png">
84+
![set working directory](https://user-images.githubusercontent.com/56690856/96426111-6ea9bf00-121a-11eb-90e3-8ccc7183a6c0.png)
8585

8686
Now create a branch using the `git checkout` command:
8787

88-
```
88+
```bash
8989
git checkout -b your-new-branch-name
9090
```
9191

9292
For example:
9393

94-
```
94+
```bash
9595
git checkout -b dev_username
9696
```
9797

98-
<img src="https://user-images.githubusercontent.com/56690856/96426659-2a6aee80-121b-11eb-81f3-d616ae00229d.png">
98+
![checking out to new branch](https://user-images.githubusercontent.com/56690856/96426659-2a6aee80-121b-11eb-81f3-d616ae00229d.png)
9999

100100
## Make necessary changes and commit those changes 🚏
101101

102102
Do the necessary changes.
103103

104104
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+
![making changes](https://user-images.githubusercontent.com/56690856/96426834-6736e580-121b-11eb-9211-8b26715921ae.png)
106106

107107
Add those changes to the branch you just created using the `git add` command:
108108

109-
```
109+
```bash
110110
git add .
111111
```
112112

113-
<img src="https://user-images.githubusercontent.com/56690856/96427459-34412180-121c-11eb-9fa1-72cdaeae61f3.png">
113+
![add changes](https://user-images.githubusercontent.com/56690856/96427459-34412180-121c-11eb-9fa1-72cdaeae61f3.png)
114114

115115
Now commit those changes using the `git commit` command:
116116

117-
```
117+
```bash
118118
git commit -m "(Add your message here)"
119119
```
120120

121121
replacing `<Add your message here>` with your message.
122122

123-
<img src="https://user-images.githubusercontent.com/56690856/96427464-35724e80-121c-11eb-91c2-20001f5def5a.png">
123+
![commit changes](https://user-images.githubusercontent.com/56690856/96427464-35724e80-121c-11eb-91c2-20001f5def5a.png)
124124

125125
## Push changes to GitHub 🪂
126126

127127
Push your changes using the command `git push`:
128128

129-
```
129+
```bash
130130
git push origin <branch-name>
131131
```
132132

133133
replacing `<branch-name>` with the name of the branch you created earlier.
134134

135-
<img src="https://user-images.githubusercontent.com/56690856/96427466-360ae500-121c-11eb-9c02-e201906a0a72.png">
135+
![push changes](https://user-images.githubusercontent.com/56690856/96427466-360ae500-121c-11eb-9c02-e201906a0a72.png)
136136

137137
## Submit your changes for review 🚩
138138

139139
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+
![create PR](https://user-images.githubusercontent.com/56690856/96427945-ce08ce80-121c-11eb-9223-a120c7d72541.png)
141141

142142
Now submit the pull request.
143143

144-
<img src="https://user-images.githubusercontent.com/56690856/96427954-cfd29200-121c-11eb-90f7-1f4ea2f8342f.png"><br><br>
144+
![submit PR](https://user-images.githubusercontent.com/56690856/96427954-cfd29200-121c-11eb-90f7-1f4ea2f8342f.png)
145145

146146
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.

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ Collection of awesome scripts and hacking tools from basic to advance. Contribut
3232

3333
<p align="center"><img src="https://media.giphy.com/media/Rje6bsoJVORnLBfZwP/giphy.gif" alt="Logo" width="300" height="300"> <img src="https://media.giphy.com/media/HoffxyN8ghVuw/giphy.gif" width="300" height="300">
3434

35-
## Overview
35+
## Overview
3636
This project is mainly ensured to build in an open source community to help the people of our country grow and develop themselves.
37-
38-
## Tech stacks used
37+
38+
## Tech stacks used
3939

4040
**Any Scripting Language**
4141

4242
## How to participate and contribute?
4343
### Register as a participant on [**Sanscript India**](https://sanscript.tech) website and start contributing.***(Registrations are Open!!)***<br>
4444
### Follow contribution guidelines mentioned [here.](https://github.com/sanscript-tech/hacking-tools-scripts/blob/main/CONTRIBUTING.md)<br>
4545
### Contributions will end on ***20 November 2020***.
46-
46+
4747

4848
### This project is under AOS 2020 (Autumn open source program) under Sanscript, India.
4949

0 commit comments

Comments
 (0)