Adding commit template and dev_setup.sh support
The commit template provides a developer with a structure to follow for communicating with others on the mycroft-core project. ==== Tech Notes ==== Please use this template from here on!pull/954/head
parent
58288b4c11
commit
6ed479346c
|
@ -0,0 +1,33 @@
|
|||
Commit headline -- not longer than this line (50)
|
||||
|
||||
This is the template for commits to mycroft-core and also an example of
|
||||
a commit message. To use this template, change the first line (think of
|
||||
it as a "headline" for the commit) and then edit this message with a
|
||||
longer description of the change. To be nice, keep lines to 72
|
||||
characters or less (The first two lines of this template are exactly
|
||||
that length).
|
||||
|
||||
Sections below can then be filled out and edited as appropriate.
|
||||
Unused sections can optionally be removed.
|
||||
|
||||
Please fill this out carefully. This moment is when the code is
|
||||
clearest in the mind of you, the foremost expert in this change.
|
||||
Please pause to think of side effects and impacts.
|
||||
|
||||
==== Fixed Issues ====
|
||||
NONE - replace with associated issue numbers, e.g. #123, #304
|
||||
|
||||
==== Tech Notes ====
|
||||
NONE - explain new algorithms in detail, tool changes, etc.
|
||||
|
||||
==== Documentation Notes ====
|
||||
NONE - description of a new feature or notes on behavior changes
|
||||
|
||||
==== Localization Notes ====
|
||||
NONE - point to new strings, language specific functions, etc.
|
||||
|
||||
==== Environment Notes ====
|
||||
NONE - new package requirements, new files being written to disk, etc.
|
||||
|
||||
==== Protocol Notes ====
|
||||
NONE - message types added or changed, new signals, APIs, etc.
|
|
@ -32,6 +32,10 @@ if [ $(id -u) -eq 0 ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# Configure to use the standard commit template for
|
||||
# this repo only.
|
||||
git config commit.template .gitmessage
|
||||
|
||||
TOP=$(cd $(dirname $0) && pwd -L)
|
||||
|
||||
if [ -z "$WORKON_HOME" ]; then
|
||||
|
|
Loading…
Reference in New Issue