Skip to content

Commit b4e90ae

Browse files
committed
added CONTRIBUTING.md file
1 parent 4e61ee8 commit b4e90ae

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

CONTRIBUTING.md

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
## `Steps To Generate PR(Pull Request)`
2+
3+
- (Star ⭐ & Fork 🍽️) this repository.
4+
- Follow [rohit8020](https://www.github.com/rohit8020) get it merged fast.
5+
# Fork this repository
6+
7+
Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.
8+
9+
# Clone the repository
10+
11+
Now clone the forked repository to your system. Go to your GitHub account, open the forked repository, click on the code button and then clone the repository.
12+
13+
*if you want to use the terminal, use the following commands*
14+
after you fork the repository , open the terminal type the given command
15+
```
16+
git clone https://github.com/{your-github-username}/css-loaders.git
17+
18+
```
19+
20+
# Create a branch
21+
22+
Then create a branch on your local repository to solve a problem.
23+
24+
*terminal commands*
25+
```
26+
git checkout -b your_new_branch_name
27+
28+
```
29+
30+
31+
# Add & commit
32+
33+
Add your changes(folder) to that branch. <br/>
34+
Make necessary changes and commit those changes.
35+
*terminal commands*
36+
```
37+
git add .
38+
git commit -m "your-commit-message"
39+
40+
```
41+
42+
# Push changes to GitHub
43+
44+
Finally push your local repository to remote repository
45+
Compare & Submit a Pull Request
46+
47+
*terminal commands*
48+
```
49+
git push origin <branch-name>
50+
51+
```
52+
53+
Then go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.
54+
55+
Now submit the pull request.

0 commit comments

Comments
 (0)