0

Is there something shorter for git config --list --local
(git properties for local git repository) ?

Like git ll ?

Paul Verest
  • 60,022
  • 51
  • 208
  • 332
  • 2
    No, but Git supports aliases that you define yourself. If you want `git ll` to mean `config --list --local`, define that as an alias, and then `git ll` will do that. See [Where is my git alias stored?](https://stackoverflow.com/q/11747691/1256452) for example. – torek Sep 16 '21 at 11:46
  • 2
    to add to torek's comment : `git config --global alias.ll "config --list --local"` (that would be as a global alias, drop `--global` if you want to define this alias for this local repo only) – LeGEC Sep 16 '21 at 12:05
  • that would be perfect answer – Paul Verest Sep 16 '21 at 12:30

0 Answers0