forked from jontejj/jargo
-
Notifications
You must be signed in to change notification settings - Fork 1
Developer Settings
Jonatan Jönsson edited this page May 10, 2018
·
4 revisions
Setting up your user information
git config --global user.email "me@here.com"
git config --global user.name "My Name (UTF-8 characters allowed)"
Avoiding commits such as Merge commit (it makes you use rebase by default instead of merge)
git config branch.master.rebase true
See Plugins
Set up workspace mechanic to use config/workspace-mechanic-tasks. Versioning how to edit code together with the code makes it easy to edit code in an old branch with the settings that was used then. This avoids big diffs when only fixing small things.
mvn -o -T 1C -am -pl jargo install #-o can only be used the second time you build (offline mode)