Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.06 KB

CONTRIBUTING.md

File metadata and controls

26 lines (20 loc) · 1.06 KB

Contributing

How to contribute remotely

    1. Fork the repository
    1. Create a new branch
    1. Make your changes
    1. Commit your changes
    1. Push your changes
    1. Create a pull request

How to contribute locally

    1. Fork the repository remotely
    1. Clone the repository locally by running: git clone https://github.com/<your-github-username>/Git-Cheatsheet.git
    1. Navigate to the repository by running: cd Git-Cheatsheet
    1. Create a new branch by running: git checkout -b <branch-name>
    1. Make your changes locally
    1. Add your changes by running: git add .
    1. Commit your changes by running: git commit -sm "<commit-message>"
    1. Push your changes by running: git push origin <branch-name>
    1. Create a Pull Request!

That's it! Congratulations on your first contribution!

Thanks for reading! If you have any questions, feel free to ask them in the issues section.