Contributing Your Work
GitHub Pull-Requests
http://bit.ly/vivo-workshop-2018
Steps to Success
Create a JIRA Ticket
If you need a JIRA account, send a request to: sysadmin@duraspace.org
Create a Git Branch
You created a JIRA ticket: VIVO-1234
$ git checkout develop
$ git pull
$ git checkout -b vivo-1234
Make Updates
Add / Commit Updates to Branch
$ git add .
$ git commit
# example commit message
Update ConfigurationBeanLoader to use `java:` namespace
Resolves: https://jira.duraspace.org/browse/VIVO-1234
Push Update Branch to GitHub Fork
$ git push origin vivo-1234
Submit Pull-Request
Fill out pull-request template
Update JIRA Ticket
Pull Request:
https://github.com/vivo-project/VIVO/pull/999
Repeat