1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00

Add List Most Git Commands as a git til.

This commit is contained in:
jbranchaud
2015-12-25 00:26:06 -06:00
parent 306a92036a
commit 791418b9f6
2 changed files with 10 additions and 0 deletions

View File

@@ -74,6 +74,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
- [Intent To Add](git/intent-to-add.md)
- [Last Commit A File Appeared In](git/last-commit-a-file-appeared-in.md)
- [List Filenames Without The Diffs](git/list-filenames-without-the-diffs.md)
- [List Most Git Commands](git/list-most-git-commands.md)
- [List Untracked Files](git/list-untracked-files.md)
- [Move The Latest Commit To A New Branch](git/move-the-latest-commit-to-a-new-branch.md)
- [Reference A Commit Via Commit Message Pattern Matching](git/reference-a-commit-via-commit-message-pattern-matching.md)

View File

@@ -0,0 +1,9 @@
# 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)