-
Notifications
You must be signed in to change notification settings - Fork 44.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Contributing.md file #250
Merged
Torantulino
merged 1 commit into
Significant-Gravitas:master
from
ManoBharathi93:patch-1
Apr 6, 2023
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,55 @@ | ||||||||||
|
||||||||||
To contribute to this GitHub project, you can follow these steps: | ||||||||||
|
||||||||||
1. Fork the repository you want to contribute to by clicking the "Fork" button on the project page. | ||||||||||
|
||||||||||
2. Clone the repository to your local machine using the following command: | ||||||||||
|
||||||||||
``` | ||||||||||
git clone https://github.com/Torantulino/Auto-GPT | ||||||||||
``` | ||||||||||
3. Create a new branch for your changes using the following command: | ||||||||||
|
||||||||||
``` | ||||||||||
git checkout -b "branch-name" | ||||||||||
``` | ||||||||||
4. Make your changes to the code or documentation. | ||||||||||
- Example: Improve User Interface or Add Documentation. | ||||||||||
|
||||||||||
5. Add the changes to the staging area using the following command: | ||||||||||
``` | ||||||||||
git add . | ||||||||||
``` | ||||||||||
|
||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
6. Commit the changes with a meaningful commit message using the following command: | ||||||||||
``` | ||||||||||
git commit -m "your commit message" | ||||||||||
``` | ||||||||||
7. Push the changes to your forked repository using the following command: | ||||||||||
``` | ||||||||||
git push origin branch-name | ||||||||||
``` | ||||||||||
8. Go to the GitHub website and navigate to your forked repository. | ||||||||||
|
||||||||||
9. Click the "New pull request" button. | ||||||||||
|
||||||||||
10. Select the branch you just pushed to and the branch you want to merge into on the original repository. | ||||||||||
|
||||||||||
11. Add a description of your changes and click the "Create pull request" button. | ||||||||||
|
||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
12. Wait for the project maintainer to review your changes and provide feedback. | ||||||||||
|
||||||||||
13. Make any necessary changes based on feedback and repeat steps 5-12 until your changes are accepted and merged into the main project. | ||||||||||
|
||||||||||
14. Once your changes are merged, you can update your forked repository and local copy of the repository with the following commands: | ||||||||||
|
||||||||||
``` | ||||||||||
git fetch upstream | ||||||||||
git checkout master | ||||||||||
git merge upstream/master | ||||||||||
``` | ||||||||||
Finally, delete the branch you created with the following command: | ||||||||||
``` | ||||||||||
git branch -d branch-name | ||||||||||
``` | ||||||||||
That's it you made it 🐣⭐⭐ |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.