Project

General

Profile

Actions

Git-maus » History » Revision 15

« Previous | Revision 15/44 (diff) | Next »
Dobbs, Adam, 24 February 2017 18:08


Git-maus

Besides Launchpad and bazaar MAUS has beta level support for git andgithub. At the moment code updates for the trunk cannot be accepted from github however, only via Launchpad and bazaar.

Development

Set up a development branch

  • Set up an account on github and add an ssh key to your account
  • Clone the MAUS repository as described at Obtaining MAUS via Git
  • Fork the MAUS repository on github
    • Go to MAUS github page and login into github
    • Click "Fork" in the top right of the screen, selecting the option to fork to your own account
  • Add your fork as a new remote in your local MAUS git repository
    • Copy the address of your new fork from github (something like git@github.com:jbloggs/maus.git, where jbloggs is your github username)
    • Return to the terminal and navigate to the MAUS git repository created earlier
    • Add your new forked repository using:
      git remote add my-fork git@github.com:jbloggs/maus.git
      

      where jbloggs is your github username.
  • Fork the merge branch locally:
    git checkout merge
    git checkout -b my-feature-branch
    
  • Push your local fork of the merge branch to your remote repository:
    git push my-fork my-feature-branch
    
  • Do some coding
  • When ready add the files you have modified or created ready for committing:
    git add <files>
    
  • Commit your changes:
    git commit -m 'Some informative message about the changes'
    
  • Push the changes to your remote repository:
    git push my-fork my-feature-branch
    

Propose your branch for merging

  • Run Jenkins test server job on your development branch (email the head of MAUS for help with setting up a test branch)
  • When Jenkins has passed, return to your repository page on github and select my-feature-branch from the drop-down menu on the left
  • Click the "Pull request" button to propose merging into the trunk
  • Make sure your branch is comfortable for merging - if not, edit some more until it is, commit and push, then try again

Updated by Dobbs, Adam over 6 years ago · 15 revisions