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
{{ message }}
This repository was archived by the owner on Aug 7, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+17-5Lines changed: 17 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,29 +77,41 @@ git merge upstream/main
77
77
78
78
**7.** Make your changes to the source code.
79
79
80
-
**8.** Stage your changes and commit:
80
+
**8.** Stage your changes:
81
81
82
82
⚠️ **Make sure** not to commit `package.json` or `package-lock.json` file
83
83
84
-
⚠️ **Make sure** not to run the commands `git add .` or `git add *`. Instead, stage your changes for each file/folder
84
+
⚠️ **Make sure** not to run the commands `git add .` or `git add *`
85
+
86
+
> Instead, stage your changes for each file/folder
87
+
>
88
+
> By using public path it means it will add all files and folders under that folder, it is better to be specific
85
89
86
90
```bash
87
91
git add public
88
92
```
89
93
94
+
_or_
95
+
96
+
```bash
97
+
git add "<files_you_have_changed>"
98
+
```
99
+
100
+
**9.** Commit your changes:
101
+
90
102
```bash
91
103
git commit -m "<your_commit_message>"
92
104
```
93
105
94
-
**9.** Push your local commits to the remote repository:
106
+
**10.** Push your local commits to the remote repository:
95
107
96
108
```bash
97
109
git push origin YourBranchName
98
110
```
99
111
100
-
**10.** Create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)!
112
+
**11.** Create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)!
101
113
102
-
**11.****Congratulations!** You've made your first contribution to [**LinkFree**](https://github.com/EddieHubCommunity/LinkFree/graphs/contributors)! 🙌🏼
114
+
**12.****Congratulations!** You've made your first contribution to [**LinkFree**](https://github.com/EddieHubCommunity/LinkFree/graphs/contributors)! 🙌🏼
103
115
104
116
**_: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