Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 881 Bytes

File metadata and controls

32 lines (19 loc) · 881 Bytes

Contributing to summit branch:

  1. click the "Fork" button on https://github.com/TorkamaniLab/Imputation_Autoencoder

  2. clone your local copy:

    cd /ccs/proj/bif138/$USER git clone -b summit git@github.com:/Imputation_Autoencoder git remote add upstream git@github.com:TorkamaniLab/Imputation_Autoencoder

  3. create a feature branch:

    git checkout -b <new_feature_branch_name>

  4. edit, test, then commit

    git add git commit -m 'description'

  5. check for changes to upstream

    git fetch git rebase summit # fix your commits to match any changes to summit

  6. push changes to your github

    git push -u origin <new_feature_branch_name>

  7. Use the pull request button on: https://github.com//Imputation_Autoencoder

  8. change back to summit branch and continue

    git checkout summit