Skip to content

Latest commit

 

History

History
67 lines (42 loc) · 2.24 KB

CONTRIBUTING.md

File metadata and controls

67 lines (42 loc) · 2.24 KB

Contributing to LangGraph-learn

Thank you for considering contributing to LangGraph-learn! We welcome contributions of all kinds, including new examples, bug fixes, documentation improvements, and more.

How to Contribute

1. Fork the Repository

  1. Navigate to the LangGraph-learn repository.
  2. Click the "Fork" button in the upper right corner of the repository page. This will create a copy of the repository in your GitHub account.

2. Clone Your Fork

Clone your forked repository to your local machine:

git clone https://github.com/your-username/LangGraph-learn.git

3. Create a New Branch

Create a new branch for your feature or fix:

git checkout -b your-branch-name

4. Make Your Changes

Make the necessary changes to the codebase. Ensure that your code follows the project's coding standards and includes appropriate documentation and tests.

5. Commit Your Changes

Commit your changes with a clear and concise commit message:

git add .
git commit -m "Description of your changes"

6. Push Your Changes

Push your changes to your forked repository:

git push origin your-branch-name

7. Create a Pull Request

  1. Navigate to the original LangGraph-learn repository.
  2. Click on the "Pull requests" tab and then click the "New pull request" button.
  3. Select your fork and branch as the source and the original repository and branch as the destination.
  4. Provide a clear title and description for your pull request.
  5. Click the "Create pull request" button to submit your pull request.

8. Review and Merge

Your pull request will be reviewed by the project maintainers. They may request changes or ask for additional information. Once your pull request is approved, it will be merged into the main repository.

Additional Resources

Thank you for your contribution! Your support is greatly appreciated.