-
Notifications
You must be signed in to change notification settings - Fork 108
Developing against WMCore
Eric Vaandering edited this page Sep 16, 2015
·
20 revisions
We use a workflow very similar to the one explained here: https://github.com/sevntu-checkstyle/sevntu.checkstyle/wiki/Development-workflow-with-Git:-Fork,-Branching,-Commits,-and-Pull-Request
- Create a GitHub account and ask to be made a part of the DMWM Contributors team
- Fork the WMCore repository (visit https://github.com/dmwm/WMCore and click fork on the upper right side)
- Clone the WMCore repository:
git clone https://github.com/USERNAME/WMCore.git
(You can find the URL in the text box on your page. - Configure the DMWM version of the code as your first remote:
cd WMCore
-
git remote add upstream https://github.com/dmwm/WMCore.git
(you don't need to call it upstream, but this is convention) (you can also add any user there if you want to follow what others are doing)