We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31f8376 commit 54abfd2Copy full SHA for 54abfd2
.devcontainer/commands/initialize.sh
@@ -1,5 +1,6 @@
1
#!/bin/bash
2
set -e
3
4
-git config --local user.email "$(git config user.email)"
+git config --local format.signoff true
5
git config --local user.name "$(git config user.name)"
6
+git config --local user.email "$(git config user.email)"
.devcontainer/commands/postCreate.sh
@@ -1,6 +1,11 @@
+if git config --get commit.gpgsign | grep -q true; then
+ git config --global gpg.format ssh
+ git config --global gpg.ssh.defaultKeyCommand 'ssh-add -L'
7
+ git config --global gpg.ssh.allowedSigners '~/.ssh/allowed_signers'
8
+fi
9
10
# Set up YDB profile if ydb cli exists
11
if which ydb > /dev/null 2>&1; then
0 commit comments