Project

General

Profile

Bug #6862

Updated by Bryan Cosca over 8 years ago

Provide a rough guide on how git works and how to work with your own repository. Also teach the benefits of version control and why we do what we do. (I know there is documentation for this somewhere else, but I think we need an example of doing it with Arvados.) 

 * Create new arvados Git repository. 
 * Create a new branch (provide naming conventions) 
 * Create a new file in a new branch 
 * Git add 
 * Git commit 
 * Git push origin branch_name (Don't need to do origin all the time, explain remote vs local) 
 * When making changes to original scripts, only commit and push. 
 * Change script_version and script in pipeline template.

Back