Skip to content

Latest commit

 

History

History
38 lines (19 loc) · 767 Bytes

CONTRIBUTING.md

File metadata and controls

38 lines (19 loc) · 767 Bytes

Contributing Anndaata-Connect

Setup (Refer to Project Setup for more details):

main_repo_url :https://github.com/abhi03ruchi/Anndaata-Connect

1.To Fork:

On the main repository, click on the right hand corner "Fork".

After it's forked, clone it locally by using the command git clone (url of forked repository)

  1. How to push changes from forked repository:
  • To add main repository as remote on local repository:

git remote add upstream (main url)

  • Fetch updates from the main repository:

git fetch upstream

  • Create a new branch for your changes:

git checkout -b my-branch-name

  • Make and commit changes by:

git add .

git commit -m "Add new feature or fix a bug"

git push origin my-branch-name

Ideas for Contributing

  • Remember to open issue