Contributing to summit branch:
-
click the "Fork" button on https://github.com/TorkamaniLab/Imputation_Autoencoder
-
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
-
create a feature branch:
git checkout -b <new_feature_branch_name>
-
edit, test, then commit
git add git commit -m 'description'
-
check for changes to upstream
git fetch git rebase summit # fix your commits to match any changes to summit
-
push changes to your github
git push -u origin <new_feature_branch_name>
-
Use the pull request button on: https://github.com//Imputation_Autoencoder
-
change back to summit branch and continue
git checkout summit