chiark / gitweb /
update message
[topgit.git] / .topmsg
1 From: martin f. krafft <madduck@debian.org>
2 Subject: [TopGit PATCH] Ensure we are inside a Git worktree
3
4 Bert Wesarg suggests to check that we are not inside the .git directory before
5 setting up topgit. Because git rev-parse --git-dir only works in the top .git
6 dir, not deeper (i.e. inside .git/refs) and will always return "."
7
8 This patch thus causes topgit to die early on when it's called from outside of
9 a Git repository, or from underneath .git and outputs error messages
10 accordingly.
11
12 This temporarily makes it even more impossible to call tg --help, but I expect
13 to have that fixed soon too.
14
15 Signed-off-by: martin f. krafft <madduck@debian.org>