You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jonatan Jönsson edited this page May 10, 2018
·
4 revisions
Git
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
Eclipse
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.
Building with maven:
mvn -o -T 1C -am -pl jargo install #-o can only be used the second time you build (offline mode)