File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ ## How to contribute:
2+
3+ 1 . Fork this repository on your own GitHub Account
4+
5+ 2 . Clone this repository to your local machine
6+
7+ ```
8+ $ git clone "https://www.github.com/{Your Git Username}/Evolvve-Student-Chapter-Application"
9+ ```
10+
11+ 3 . Go to the root folder of this repository
12+ ```
13+ cd Evolvve-Student-Chapter-Application
14+ ```
15+
16+ 4 . Make your changes on new branch
17+ ```
18+ $ git checkout -b {branch name}
19+ ```
20+
21+ 5 . Stage your changes
22+ ```
23+ $ git add {filename}
24+ ```
25+
26+ 6 . Commit your changes
27+ ```
28+ $ git commit -m "Commit message"
29+ ```
30+
31+ 7 . Push your branch
32+ ```
33+ $ git push -u origin {branch name}
34+ ```
35+
36+ 8 . Go to GitHub and open a pull request to the upstream repository
37+
38+ ## How to update forked repository with our main repository
39+
40+ ```
41+ $ git remote add upstream "https://www.github.com/NishkarshRaj/Evolvve-Student-Chapter-App"
42+ $ git checkout master
43+ $ git fetch upstream
44+ $ git merge upstream/master
45+ $ git push -f origin master
46+ ```
You can’t perform that action at this time.
0 commit comments