-
Notifications
You must be signed in to change notification settings - Fork 731
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4359 from torok839098/main
Add a Contributing file
- Loading branch information
Showing
2 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Contributing | ||
|
||
Purpose of SwapReads: Connect, Exchange, Explore – Where Book Enthusiasts Swap Books and Discover New Literary Adventures! | ||
|
||
Setup (Refer to Project Setup for more details): | ||
|
||
main_repo_url :https://github.com/anuragverma108/SwapReads.git | ||
|
||
1.To Fork: | ||
|
||
On the main repository, click on the right hand corner "Fork". | ||
|
||
After it's forked, clone it locally by using the command git clone (url of forked repository) | ||
|
||
2. How to push changes from forked repository: | ||
|
||
- To add main repository as remote on local repository: | ||
|
||
git remote add upstream (main url) | ||
|
||
- Fetch updates from the main repository: | ||
|
||
git fetch upstream | ||
|
||
- Create a new branch for your changes: | ||
|
||
git checkout -b my-branch-name | ||
|
||
- Make and commit changes by: | ||
|
||
git add . | ||
|
||
git commit -m "Add new feature or fix a bug" | ||
|
||
git push origin my-branch-name | ||
|
||
|
||
Ideas for Contributing | ||
- Remember to open issue | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|