Steamclock uses various tools and utilities to build our apps. We call these tools Pinions and like to open source them. Right now we're still reformatting, commenting, and organizing our code so if you're here now, know that documentation is coming.
You can clone the entire repository and then pick and choose what pinions you use, but we recommend using them with git subtree
if you expect that you will want to pull in changes as we update SCPinions.
Please note that you need to have version of git >= 1.7.11 for the following instructions to work. You can type git --version
to find out.
git remote add SCPinions [email protected]:steamclock/SCPinions.git
git fetch SCPinions
git checkout -b SCPinions SCPinions/master
git checkout master
git read-tree --prefix=SCPinions/ -u SCPinions
Now you have a directory in your master where SCPinions lives, and you can use it in your project.
To get changes from SCPinions and merge them into your project:
git checkout SCPinions
git pull
git merge --squash -s subtree --no-commit SCPinions
To submit changes upstream to the SCPinions repository once you have your subtree set up, do the following:
git diff-tree -p SCPinions
to review changes you made in the subtree of your master branchgit checkout SCPinions
git merge --squash -s subtree --no-commit master
- Push!
The reason why we use the flags above instead of a straight merge is so that we don't grab commit history from either project when merging between them. In most cases, you're not going to want SCPinions' commit history in the base project, and we're not going to want the base project's commit history in ours, especially if it's proprietary. Feel free to use a basic merge
if you do want our the commit history.
IMPORTANT: When I (afabbro) was first experimenting with subtrees, I was a little nervous about pushing back upstream because my branch appeared to have files in the root that were from my main/master project after branching. git was/is not keeping track of those files in the same context as SCPinions; when you try and operate on those files with git commands it's as though git doesn't know anything about them. That's what we want though since we don't want to push anything from the master branch up to SCPinions. Don't panic, if you've followed the above steps you should be okay.
Hey! You want to contribute to SCPinions? That's awesome. It's easiest if you go about things a little bit differently.
- Fork our code into your own repo
- Follow the instructions above for 'Using SCPinions' with subtrees, except use the git address to your own fork rather than our repo
- Push changes up to your fork using the instructions under 'Contributors with push permissions', the section immediately preceding this one if you're going the subtree route
- Submit a pull request on Github
- We love you forever. <3
You can use git submodules as an alternative if you are crazy.