Skip to content

Instantly share code, notes, and snippets.

@tjt263
Created April 14, 2018 14:19
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 tjt263/f018031837304b9c382bb2951d3f0c75 to your computer and use it in GitHub Desktop.
Save tjt263/f018031837304b9c382bb2951d3f0c75 to your computer and use it in GitHub Desktop.
Notes on how to quickly contribute to a GitHub repo.
#fork "$repo";
git clone "https://github.com/$user/$fork.git";
cd "$fork";
#edit "$file";
git add "$file";
git status;
git commit -m "$message";
git push origin master;
#pull "$fork" into "$repo"
@tjt263
Copy link
Author

tjt263 commented Apr 21, 2018

This is not intended to be a working script.

Some instructions are #commented out.
These are performed in your web browser.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment