From 46336d59ddf968beabcb1a9a8ff9e942b450be90 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 12 Aug 2016 23:20:20 -0500 Subject: [PATCH] Add syntax type to code block in latest til --- git/list-different-commits-between-two-branches.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/list-different-commits-between-two-branches.md b/git/list-different-commits-between-two-branches.md index 6303fce..34eefc3 100644 --- a/git/list-different-commits-between-two-branches.md +++ b/git/list-different-commits-between-two-branches.md @@ -10,7 +10,7 @@ importantly the `--cherry-pick` flag. To compare the `feature` branch against the `master` branch, I can run a command like the following: -``` +```bash $ git log --left-right --graph --cherry-pick --oneline feature...branch ```