From df78e48c1867f0d33c9346383e112fca3c2dd2a9 Mon Sep 17 00:00:00 2001 From: sofiaoreis Date: Wed, 16 Mar 2022 01:32:57 +0000 Subject: [PATCH] update configuration --- CONFIG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONFIG.md b/CONFIG.md index 9517271..c826189 100644 --- a/CONFIG.md +++ b/CONFIG.md @@ -6,14 +6,14 @@ Configuring SECOM in your repository is very simple! 🤩 cd repository-path/ cd .git/ mkdir templates/ -wget https://github.com/TQRG/secom/template/secom +wget https://raw.githubusercontent.com/TQRG/secom/main/template/commit.secom ``` Setting an alias in your github configuration `~/.gitconfig` for security commits is helpful to distinguish security commits from other types of commits. Add the following to your `~/.gitconfig` file: ```bash [alias] - secommit = commit -t .git/templates/secom + secommit = commit -t .git/templates/commit.secom ``` Now, every time you want to commit your security patch just run `git secommit`, fill the template different sections and `git push`. 💥