Good working practices for GitHub
:construction: In Progress :construction:
Branches
master: For minor updates and documentation updates or initial dev phase with one worker
Dev1: create sensibly named braches e.g. a feature that’s being introduced
Dev2: new branches for new features, can be done simultaneously.
git branch testing
git checkout testing
# swap back
git checkout master
# merge
git merge testing -m ":twisted_rightwards_arrows:"
# or
git push origin testing:master
When features are complete can merge back into master.
to delete branches run git branch -D branchname
Difference
Difference between remote and
git diff branch_1..branch_2
# Remote vs local
git diff remotes/origin/some-branch my-local-branch
# commonly remote vs local
git diff remotes/origin/master master
Troubleshooting
Rewrite history: Accidentally committed a large file (too large), you have to remove the mistake from the commit history and force push it.
git filter-branch --tree-filter 'rm -rf path/to/your/file' HEAD
git push -f origin master
DOI
link your GitHub account with zenodo
Make sure you have admin access (to allow webhooks to be created)
Navigate to https://zenodo.org/account/settings/github/
Switch the flag on desired repository to on
Create a Release - these files will appear on the DOI - make sure you are happy with the repo in it exact state
Navigate to https://zenodo.org/account/settings/github/
Click on the badge for the repo and copy the markdown code into the READEME.md of the repo
Wait a few mins and click on the DOI badge on the repo
Edit the meta data, authors full names not github IDs, adtional authors, license, title may need modifies. Save and then Publish
Share the DOI with relevant people
All future releases will automatically update the DOI. Please check the meta data each time