Fixed ignored command option

This commit is contained in:
Michele Cereda
2022-04-21 17:51:01 +02:00
parent 8e50b0d5c9
commit f1cc513303

View File

@@ -68,7 +68,7 @@ git config --list --show-origin
# render the current configuration
git config --list \
| awk -F '=' '{print $1}' | uniq \
| xargs -n 1 -I {} sh -c 'printf "{}=" && git config --get {}'
| xargs -I {} sh -c 'printf "{}=" && git config --get {}'
# get the top-level directory of the current repository
git rev-parse --show-toplevel