mirror of
https://github.com/jbranchaud/til
synced 2026-01-02 22:58:01 +00:00
10 lines
206 B
Markdown
10 lines
206 B
Markdown
# List Most Git Commands
|
|
|
|
You can list most git commands by using the `-a` flag with `git-help`:
|
|
|
|
```
|
|
$ git help -a
|
|
```
|
|
|
|
[Source](http://stackoverflow.com/questions/7866353/git-list-all-available-commands)
|