This repository was archived by the owner on Feb 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
DeveloperInstructions
wagnerand edited this page Sep 1, 2013
·
3 revisions
- Work on branches, merge when you're finished.
- Do not merge unfinished feature branches! If you do, God will have to rebase and everyone will have to suffer!
- Create a branch:
git branch BRANCHNAME. - Checkout a branch:
git checkout BRANCHNAME. - Do your work.
- When done,
git checkout master. - Merge:
git merge BRANCHNAME.
- Create some useful aliases:
git config alias.graph "log --graph --oneline --all --decorate"
- Clone the repo using
git clone. See the main page for a suitable url to clone from. - Add changes to the index using
git add - Check what will be in your commit with
git diff --cachedbefore committing. -
git commit. - Check
git graphafter you committed. -
git push.
- Open code/defaults/preferences/firetag.js and increase the value of the preference
extensions.dfki.FireTag.installVersion(first line) - Call
antfrom the root directory of the project. git commit- Tag the release:
git tag -a VERSIONNUMBERREPLACEVERSIONNUMBERby the version number used in step 1. - Check
git graphafter you committed. git pushgit push --tags