From a952800661456fd5eb1801168380b7210d581371 Mon Sep 17 00:00:00 2001
From: Daniel Shahaf <d.s@daniel.shahaf.name>
Date: Thu, 20 Jul 2017 17:32:20 +0000
Subject: [PATCH] Fix: list-tracked in subdir would print invalid paths

Fixes #230
---
 vcsh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vcsh b/vcsh
index de1b419..183eb17 100755
--- a/vcsh
+++ b/vcsh
@@ -274,7 +274,7 @@ list() {
 
 get_files() {
 	GIT_DIR=$VCSH_REPO_D/$VCSH_REPO_NAME.git; export GIT_DIR
-	git ls-files
+	git ls-files --full-name
 }
 
 list_tracked() {
-- 
GitLab