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 7f37c33 commit 2446f30Copy full SHA for 2446f30
bin/gtr
@@ -898,7 +898,7 @@ cmd_config() {
898
log_error "Usage: git gtr config get <key> [--global]"
899
exit 1
900
fi
901
- cfg_get "$key" "$scope"
+ cfg_get_all "$key" "$scope"
902
;;
903
set)
904
if [ -z "$key" ] || [ -z "$value" ]; then
lib/config.sh
@@ -121,7 +121,7 @@ cfg_unset() {
121
--local|local|*) flag="--local" ;;
122
esac
123
124
- git config $flag --unset "$key" 2>/dev/null || true
+ git config $flag --unset-all "$key" 2>/dev/null || true
125
}
126
127
# Get config value with environment variable fallback
0 commit comments