issue
tig status does not show untracked files outside of current directory · Issue #230
(tig 1.2.1, git 1.9.1) untrack tig
:
tig `tig.c`
static const char *status_list_other_argv[] = {
"git", "ls-files", "-z", "--others", "--exclude-standard", opt_prefix, NULL, NULL,
};
`git ls-files --others ...` untracked untracked git untracked (`git ls-tree --full-tree --name-only HEAD` `git status -s` …)
tig() { (cd $(git rev-parse --show-toplevel) && command tig "$@") }