Skip to content

Instantly share code, notes, and snippets.

@shivampip
Last active October 11, 2019 07:52
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 shivampip/c15f249a368fc234e061a4a37ffc39b8 to your computer and use it in GitHub Desktop.
Save shivampip/c15f249a368fc234e061a4a37ffc39b8 to your computer and use it in GitHub Desktop.
Contribute to Open Source
  • Fork the repo by clicking Fork button
  • Clone the forked repo to local machine
git clone https://www.github.com/shivampip/tenpy
  • Create the branch
git checkout -b my_new_branch
  • Make necessory changes in the repo
  • Commit the changes
git add .
git commit -m "Commit message"
  • Push changes
git push origin my_new_branch
  • Now open you fored repo in Github.com
  • Click on Compare & Pull Request Button
  • Click on Create Pull Request
  • Now wait for original repo maintainer to approve and merge your pull request to original repo
  • You may receive confirmation mail on merging your pull request

Install forked repo

  • Clone if not already there
  • Make sure changes are at master branch. if not merge other desired branch to master branch
  • Install with
pip install -e .

Reference

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