12 lines
328 B
Plaintext
12 lines
328 B
Plaintext
project_root := justfile_directory()
|
|
scripts_dir := project_root + "/Scripts"
|
|
|
|
# Print the active global Git configuration.
|
|
[default]
|
|
show:
|
|
bash '{{scripts_dir}}/git.sh' show
|
|
|
|
# Set the global Git editor. Defaults to VS Code; pass `nvim` for Neovim.
|
|
editor value='code':
|
|
bash '{{scripts_dir}}/git.sh' editor '{{value}}'
|