Skip to content

Commit 5c3c72d

Browse files
authored
Update Contributing.md
1 parent cfc6c01 commit 5c3c72d

File tree

1 file changed

+21
-24
lines changed

1 file changed

+21
-24
lines changed

Contributing.md

+21-24
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
---
66
![GitHub custom open for collaboration](https://img.shields.io/badge/Open%20For-Collaboration-brightgreen?style=for-the-badge)
77

8-
## Autumn of Open Source AOS 2020
8+
## Autumn of Open Source AOS 2020:rainbow:
99

1010
<p align="center">
1111
<a href="https://sanscript.tech/">
@@ -22,11 +22,11 @@
2222

2323
* Every contribution counts, and will go a long way towards betterment of the code and/or its related files.
2424

25-
## Assistance to get started
25+
## Assistance to get started:page_facing_up:
2626

2727
If you're new to contributing and have no idea about working with repositories, be sure to check [GitHub docs to getting started](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github) from GitHub may also be helpful to refer.
2828

29-
## Essential Guidelines for contribution against Autumn of Open Source 2020:
29+
## Essential Guidelines for contribution against Autumn of Open Source 2020::bookmark_tabs:
3030

3131
Before you start off with the contribution,
3232

@@ -36,18 +36,18 @@ Before you start off with the contribution,
3636

3737
* Wait for ***approval***. After it's assigned to you then move on further, fork the repository and clone it (if haven't yet done) and start your work according to the guidelines given in the [README.md](https://github.com/sanscript-tech/orphan_support-php/blob/main/README.md) of repository.
3838

39-
## Steps to Contribute in GitHub Repository
39+
## Steps to Contribute in GitHub Repository:pushpin:
4040

4141
***If you don't have git on your machine, [install it](https://help.github.com/articles/set-up-git/).***
4242

4343
### 1. Fork this repository 🚀
4444

45-
Fork this repository by clicking on the fork button on the top of this page.
45+
* Fork this repository by clicking on the fork button on the top of this page.
4646
<p align="center">
4747
<img src="https://raw.githubusercontent.com/bhavesh1129/orphan_support-php/main/assets/img/fork.png"/>
4848
</a>
4949

50-
This will create a copy of this repository in your account.
50+
* This will create a copy of this repository in your account.
5151

5252
### 2. Clone the repository 🏁
5353

@@ -64,45 +64,42 @@ This will create a copy of this repository in your account.
6464
git clone "url you just copied"
6565
```
6666

67-
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+
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.
6868

6969

70-
For example:
70+
* For example:
7171

7272
```
7373
git clone https://github.com/sanscript-tech/orphan_support-php.git
7474
```
7575

76-
77-
78-
7976
### 3. Create a branch ⚓
8077

81-
Change to the repository directory on your computer (if you are not already there):
78+
* Change to the repository directory on your computer (if you are not already there):
8279

8380
```
8481
cd (filename)
8582
```
8683

87-
Now create a branch using the `git checkout` command:
84+
* Now create a branch using the `git checkout` command:
8885

8986
```
9087
git checkout -b your-new-branch-name
9188
```
9289

93-
For example:
90+
* For example:
9491

9592
```
9693
git checkout -b dev_username
9794
```
9895

9996
### 4. Make necessary changes and commit those changes 🚏
10097

101-
Do the necessary changes.
98+
* Do the necessary changes.
10299

103-
If you go to the project directory and execute the command `git status`, you'll see there are changes.
100+
* If you go to the project directory and execute the command `git status`, you'll see there are changes.
104101

105-
Add those changes to the branch you just created using the `git add` command:
102+
* Add those changes to the branch you just created using the `git add` command:
106103

107104
<p align="center">
108105
<img src="https://raw.githubusercontent.com/bhavesh1129/orphan_support-php/main/assets/img/Add.png">
@@ -112,7 +109,7 @@ Add those changes to the branch you just created using the `git add` command:
112109
git add .
113110
```
114111

115-
Now commit those changes using the `git commit` command:
112+
* Now commit those changes using the `git commit` command:
116113

117114
<p align="center">
118115
<img src="https://raw.githubusercontent.com/bhavesh1129/orphan_support-php/main/assets/img/Commit.png">
@@ -122,11 +119,11 @@ Now commit those changes using the `git commit` command:
122119
git commit -m "(Add your message here)"
123120
```
124121

125-
replacing `<Add your message here>` with your message.
122+
replacing `<Add your message here>` with your message.
126123

127124
### 5. Push changes to GitHub 🪂
128125

129-
Push your changes using the command `git push`:
126+
* Push your changes using the command `git push`:
130127

131128
<p align="center">
132129
<img src="https://raw.githubusercontent.com/bhavesh1129/orphan_support-php/main/assets/img/push.png">
@@ -136,23 +133,23 @@ Push your changes using the command `git push`:
136133
git push origin <branch-name>
137134
```
138135

139-
replacing `<branch-name>` with the name of the branch you created earlier.
136+
replacing `<branch-name>` with the name of the branch you created earlier.
140137

141138
### 6. Submit your changes for review 🚩
142139

143-
If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
140+
* If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
144141

145142
<p align="center">
146143
<img src="https://raw.githubusercontent.com/bhavesh1129/orphan_support-php/main/assets/img/compare.png">
147144
</a>
148145

149-
Now submit the pull request.
146+
* Now submit the pull request.
150147

151148
<p align="center">
152149
<img src="https://raw.githubusercontent.com/bhavesh1129/orphan_support-php/main/assets/img/pullrequest.png">
153150
</a>
154151

155-
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.
152+
* 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.
156153

157154

158155
## More Contribution Guidelines :guard::page_with_curl:

0 commit comments

Comments
 (0)