From 8a084f36bd0136e1c674ed3aa225d07d4125938b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Mon, 12 Jul 2021 13:45:23 +0200 Subject: Fix gg command --- README | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 4431b00..e9bd424 100644 --- a/README +++ b/README @@ -5,7 +5,9 @@ It is configured as a bare Git repository in /.git. The following shell script (named gg) used to manage it: #!/bin/sh - exec git --git-dir=/.git --work-tree=/ "$@" + export GIT_DIR=/.git + export GIT_WORK_TREE=/ + exec git "$@" This README records important pieces of configuration that is not well represented in the file system. -- cgit v1.2.3