Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 932 Bytes

File metadata and controls

32 lines (24 loc) · 932 Bytes

Contributing Guidelines

We welcome contributions! Please follow these steps to contribute to this learning repository:

1. Fork the Repository

Click the "Fork" button in the upper right corner of the GitHub page to create your own copy of the repository.

2. Clone your Fork

git clone https://github.com/YOUR_USERNAME/git-github-notes.git
cd git-github-notes

3. Create a Branch

git checkout -b feature/your-feature-name

4. Make Changes

Ensure that any new notes follow the standard topic file format outlined in the README. Use clear and beginner-friendly language.

5. Commit and Push

git add .
git commit -m "docs: add new topic on git rebase"
git push origin feature/your-feature-name

6. Open a Pull Request

Go to the original repository and click "Compare & pull request". Write a clear description of your changes.

Thank you for helping others learn Git and GitHub!