Re: [PATCH] git-init: set up GIT_DIR/workdir if GIT_WORK_DIR is set
From: Matthias Lederhofer <hidden>
Date: 2016-06-15 22:42:59
Joshua N Pritikin [off-list ref] wrote:
On Mon, Mar 12, 2007 at 12:53:50PM +0100, Matthias Lederhofer wrote:quoted
git-init will always put an absolute path in GIT_DIR/workdir, relative paths are resolved from the directory git-init was called from.Does that mean I can't move my GIT trees around without changing a config entry? What is that an improvement?
And for the decision to put an absolute path there by default:
Putting $GIT_WORK_DIR as is into $GIT_DIR/workdir is probably not what
the user expects because the content of $GIT_DIR/workdir is
interpreted relative to $GIT_DIR, not the current working directory.
Example:
/tmp$ mkdir repository working_directory
/tmp$ git --git-dir=repository --work-dir=working_directory init
If git init puts 'working_directory' into $GIT_DIR/workdir it would
make the associated working directory $GIT_DIR/working_directory =
/tmp/repository/working_directory and not /tmp/working_directory.
The alternative to use
/tmp$ git --git-dir=repository --work-dir=../working_directory init
seems quite confusing to me.
If you've any other idea to solve this please tell me.