diff options
author | Scott Moser <smoser@ubuntu.com> | 2018-01-25 10:36:36 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2018-01-25 10:38:48 -0500 |
commit | bccee93d398ab26a3ee3b427b8f26a7de8375af3 (patch) | |
tree | b39adaf27908119239dcb39d1264a9623954cbcf /HACKING.rst | |
parent | c03bdd3d8ed762cada813c5e95a40b14d2047b57 (diff) | |
download | vyos-cloud-init-bccee93d398ab26a3ee3b427b8f26a7de8375af3.tar.gz vyos-cloud-init-bccee93d398ab26a3ee3b427b8f26a7de8375af3.zip |
HACKING.rst: mention setting user name and email via git config.
Just include mention of setting user name and email when first
setting up git.
Diffstat (limited to 'HACKING.rst')
-rw-r--r-- | HACKING.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/HACKING.rst b/HACKING.rst index 93e3f424..3bb555c2 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -16,6 +16,14 @@ Do these things once When prompted for 'Project contact' or 'Canonical Project Manager' enter 'Scott Moser'. +* Configure git with your email and name for commit messages. + + Your name will appear in commit messages and will also be used in + changelogs or release notes. Give yourself credit!:: + + git config user.name "Your Name" + git config user.email "Your Email" + * Clone the upstream `repository`_ on Launchpad:: git clone https://git.launchpad.net/cloud-init |