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)