From dbf7f8af8acbd2001ac034bbddfc1480bc0d3a6e Mon Sep 17 00:00:00 2001 From: Grant Willcox <63261883+gwillcox-r7@users.noreply.github.com> Date: Wed, 16 Sep 2020 11:48:45 -0500 Subject: [PATCH] Updated Setting Up a Metasploit Development Environment (markdown) --- dev/Setting-Up-a-Metasploit-Development-Environment.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev/Setting-Up-a-Metasploit-Development-Environment.md b/dev/Setting-Up-a-Metasploit-Development-Environment.md index 90a10902cb..e7b274224b 100644 --- a/dev/Setting-Up-a-Metasploit-Development-Environment.md +++ b/dev/Setting-Up-a-Metasploit-Development-Environment.md @@ -146,7 +146,12 @@ Congratulations! You have now set up the [Metasploit Web Service (REST API)][msf echo 'alias msfconsole="pushd $HOME/git/metasploit-framework && ./msfconsole && popd"' >> ~/.bash_aliases ``` - - Consider generating a GPG key to sign your commits. Read about [why][git-horror] and [how][signing-howto]. + - Consider generating a GPG key to sign your commits. Read about [why][git-horror] and [how][signing-howto]. Once you have done this, consider enabling automatic signing of all your commits with the following command: + +``` +cd *path to your cloned MSF repository on disk* +git config commit.gpgsign true +``` - Developers tend to customize their own [git aliases] to speed up common commands, but here are a few common ones: