Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit 3bd757e

Browse files
docs: update CONTRIBUTING.md (#1387)
1 parent c7b82e9 commit 3bd757e

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

CONTRIBUTING.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,29 +77,41 @@ git merge upstream/main
7777

7878
**7.** Make your changes to the source code.
7979

80-
**8.** Stage your changes and commit:
80+
**8.** Stage your changes:
8181

8282
⚠️ **Make sure** not to commit `package.json` or `package-lock.json` file
8383

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
8589
8690
```bash
8791
git add public
8892
```
8993

94+
_or_
95+
96+
```bash
97+
git add "<files_you_have_changed>"
98+
```
99+
100+
**9.** Commit your changes:
101+
90102
```bash
91103
git commit -m "<your_commit_message>"
92104
```
93105

94-
**9.** Push your local commits to the remote repository:
106+
**10.** Push your local commits to the remote repository:
95107

96108
```bash
97109
git push origin YourBranchName
98110
```
99111

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)!
101113

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)! 🙌🏼
103115

104116
**_: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._**
105117

0 commit comments

Comments
 (0)