From 31b08df51b0b2161471fd53ac424777d76fde905 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Tue, 16 Mar 2021 22:34:44 -0500 Subject: [PATCH] Add more details to the latest til --- git/run-a-git-command-from-outside-the-repo.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/git/run-a-git-command-from-outside-the-repo.md b/git/run-a-git-command-from-outside-the-repo.md index 49e2476..329bf3a 100644 --- a/git/run-a-git-command-from-outside-the-repo.md +++ b/git/run-a-git-command-from-outside-the-repo.md @@ -18,3 +18,7 @@ $ git -C ~/code/til log Notice that the `-C` flag and its argument are positioned directly after `git`. The command (`log`) should be positioned after that. + +See `man git` for more details. + +[source](https://stackoverflow.com/a/35899275/535590)