Skip to content

Instantly share code, notes, and snippets.

@kaushik94
Created November 14, 2015 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaushik94/9e7f4f0ff615488729af to your computer and use it in GitHub Desktop.
Save kaushik94/9e7f4f0ff615488729af to your computer and use it in GitHub Desktop.
# Fork your repo example, the following is link to mine
https://github.com/kaushik94/privacybadgerchrome
# On your terminal
git clone https://github.com/kaushik94/privacybadgerchrome
# Install and run tests, then checkout another branch
# and name it in a way that resonates with the issue being solved
git checkout -b <new-branch-name-withou-these-brackets>
# Make changes and then
git add .
# the above is again a bad practice, add each file individualy but I'm lazy for now
# Always add a proper commit message, it should be 1 proper sdentence
git commit -m "your commit message here with double quotes"
# Then push this branch up
git push origin <your-branch-name-without-quotes>
# Go to your branch on github and then make a PR,
# Learn a great deal about git.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment