Repository containing various programming quotes
Let's create a list of programming related quotes in this Hacktoberfest...
- Add quotes to file
quotes.md - Don't forget to mention name of author of quote in bold
- Quote should start with
>in markdown.
1. > You might not think that programmers are artists, but programming is an extremely creative profession. It's logic-based creativity. __John Romero__
Here is an example:
-
You might not think that programmers are artists, but programming is an extremely creative profession. It's logic-based creativity. John Romero
- Star this repository using 'Star' button on the top.
- Click on Fork Repository using the 'Fork' button on the top.
- Clone the forked repository on your PC. Using this command on your Git bash or any terminal with git support :
git clone https://github.com/YOUR_USERNAME/Programming-Quotes.git- Now create a new branch with this command:
git branch branchname and then use that branch by this command:
git checkout branchname - Go ahead and make changes
- After making changes use this command to add the changes:
git add -A
git commit -m "message here" - After that use this command:
git push origin branchname - Create a pull request, and wait for Pull Request to get merged.