From ff520f5814a64cd2cab137ae7343552d02dda681 Mon Sep 17 00:00:00 2001 From: Nic0Nic0Nii Date: Thu, 30 Sep 2021 04:30:34 +0000 Subject: [PATCH] Add setup shell file and coauthors file. --- .gitpod.yml | 2 +- coauthors.sh | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100755 coauthors.sh diff --git a/.gitpod.yml b/.gitpod.yml index 954f304..a248717 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,6 +1,6 @@ # List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/ tasks: - - init: npm i -g git-mob + - init: sh ./coauthors.sh vscode: extensions: - redhat.java diff --git a/coauthors.sh b/coauthors.sh new file mode 100755 index 0000000..58f7671 --- /dev/null +++ b/coauthors.sh @@ -0,0 +1,12 @@ +npm i -g git-mob +cat <<-EOF > ~/.git-coauthors +{ + "coauthors": { + "sig": { + "name": "sigonasr2", + "email": "sigonasr2@gmail.com" + } + } +} +EOF +git mob sig \ No newline at end of file