From 7d37bec3e60a2a404682911538658003a09a1246 Mon Sep 17 00:00:00 2001 From: Tim Green Date: Sun, 13 Apr 2014 12:18:40 +0100 Subject: [PATCH] Improve styling of examples --- README.md | 29 +++++------------------------ 1 file changed, 5 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 7005d43..af97bee 100644 --- a/README.md +++ b/README.md @@ -279,30 +279,11 @@ $ git config alias.ac 'add -A . && commit' Some recommendations include: -```bash -$ git cm -``` -is Alias of: -```bash -$ git commit -``` -
-```bash -$ git ac -``` -is Alias of: -```bash -$ git add . -$ git commit -``` -
-```bash -$ git st -``` -is Alias of: -```bash -$ git status -sb -``` +| Alias | Current Command | What to Type | +| --- | --- | --- | +| `git cm` | `git commit` | `git config --global alias.cm commit` | +| `git ac` | `git add . -A` `git commit` | `git config --global alias.ac '!git add -A && git commit'` | +| `git st` | `git status -sb` | `git config --global alias.st 'status -sb'` | ### Auto-correct