-
Notifications
You must be signed in to change notification settings - Fork 7
Tutorial Converting to Repoman
Everett Griffiths edited this page Apr 6, 2015
·
3 revisions
If you've grown frustrated of maintaining your MODX projects using the conventional labor-intensive methods, then this tutorial is for you. It demonstrates how to restructure an existing project so it can be managed by Repoman and you can forget about crafting your own custom build scripts.
Follow along with this screencast: https://www.youtube.com/watch?v=Ct4uUI8rJ_M
- Fork repo in github
- Clone YOUR copy to your local computer
- Reference the original repo so your fork stays up to date with it:
$ git remote add -f upstream git@github.com:opengeek/getResources.git
- Make a branch for the new feature/fix, e.g. named "repoman":
$ git checkout -b repoman upstream/master
- Make your changes.
- Commit your changes and push them to the new branch, e.g.
git push origin repoman
- Head back to Github and create a pull request from your branch to the master.
© 2014 and beyond by Craftsman Coding