You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add Set upstream command
Set upstream command was missing in Contributing.md file.
Successfully added set upstream command.
* Update Fetch and merge
* Update Github docs
**6.** Sync your fork or local repository with the origin repository:
39
+
- In your forked repository click on "Fetch upstream"
40
+
- Click "Fetch and merge".
41
+
42
+
43
+
### Alternatively, Git CLI way to Sync forked repository with origin repository:
44
+
```bash
45
+
git fetch upstream
46
+
```
47
+
```bash
48
+
git merge upstream/main
49
+
```
50
+
### [Github Docs](https://docs.github.com/en/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github) for Syncing
51
+
52
+
53
+
**7.** Make your changes to the source code.
34
54
35
-
**6.** Stage your changes and commit:
55
+
**8.** Stage your changes and commit:
36
56
37
57
```bash
38
58
git add .
@@ -42,15 +62,15 @@ git add .
42
62
git commit -m "<your_commit_message>"
43
63
```
44
64
45
-
**7.** Push your local commits to the remote repository:
65
+
**9.** Push your local commits to the remote repository:
46
66
47
67
```bash
48
68
git push origin YourBranchName
49
69
```
50
70
51
-
**8.** Create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)!
71
+
**10.** Create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)!
52
72
53
-
**9.****Congratulations!** You've made your first contribution to [**LinkFree**](https://github.com/EddieHubCommunity/LinkFree/graphs/contributors)! 🙌🏼
73
+
**11.****Congratulations!** You've made your first contribution to [**LinkFree**](https://github.com/EddieHubCommunity/LinkFree/graphs/contributors)! 🙌🏼
54
74
55
75
***:trophy: After this, the maintainers will review the PR and will merge it if it helps move the LinkFree project forward. Otherwise, it will be given constructive feedback and suggestions for the changes needed to add the PR to the codebase.***
0 commit comments