GIT Introduction#
Git is the main tool we use for source version control.
Gitlab#
The source code for SPL group projects are all managed by the inhouse gitlab server maintained by Michael Clausen (ClM)
As git software we recommend to use one the following tools:
Commit Styleguide#
For commits we try to keep the following commitmessage syntax: <code>: message
Code |
Description |
---|---|
|
something new is added |
|
something was removed |
|
something was changed |
|
problem was corrected |
|
something was moved |
|
additional important message |
|
additional warning message |
Example#
ADD: this
REM: that
CHG: those
FIX: these
MOV: there to there
NOTE: being verbose
WARN: annoy the others