Add new page for built-in tools

This commit is contained in:
James Skemp 2022-02-12 17:08:57 -06:00
parent 7a0f223355
commit 3fa64a91e9
2 changed files with 14 additions and 0 deletions

View File

@ -10,6 +10,7 @@
* [Git configuration](configuration/git.md)
* [Repository information](configuration/repository.md)
* [Beyond Compare configuration](configuration/beyond-compare.md)
* [Included Tools](tools.md)
* [Commits](commits.md)
* [Fixing commits](commits/fixing.md)
* [Stashing](stashing.md)

13
src/tools.md Normal file
View File

@ -0,0 +1,13 @@
# Included Tools
```bash
# Simple GUI for Git.
git gui
```
```bash
# Simple GUI showing current branch commits.
gitk
# Simple GUI showing all branches and commits.
gitk --all
```