Collection of Developer Cheat Sheets, created and maintained by awesome developers.
1. Fork the project. Click on the icon in the top right to get started
2. Clone the project, you can use the following command:
Using HTTPS
git clone https://github.com/<your-github-username>/devcheatsheet
or using SSH
git clone git@github.com:<your-github-username>/devcheatsheet.git
3. Navigate to the project directory
cd devcheatsheet
1. Create a new branch
git checkout -b YourBranchName
or
git branch YourBranchName
2. Add it to staging area
git add <path to the file you worked on>
Note: git add . is used to add all the files to the staging area.
3. Commit your changes with
git commit -m '<your commit message>'
For more information about writing commits: Click here
4. Push your changes
git push -u <remote_name> <branch_name>
- Contributions make the open source community such an amazing place to learn, inspire, and create.
- Any contributions you make are greatly appreciated.
- Check out our contribution guidelines for more information.
This project needs a starοΈ from you. Don't forget to leave a starβ¨
This project is Licensed under the MIT License. Please go through the License atleast once before making your contribution.
GitHub license explained https://choosealicense.com