I have installed the portable git version on my flash drive, but I don't want my repository to be in the same directory as the program. I can get to the directory using:
$ git -- git-dir=../Gits --work-tree=..Gits
But I don't want to enter that every time. So I found in this article on the gitconfig
file. But it only shows how to set the core.worktree
core.worktree
Set the path to the root of the work tree. This can be overridden by the GIT_WORK_TREE environment variable and the --work-tree command line option. It can be an absolute path or a relative path to the .git directory, either specified by --git-dir or GIT_DIR, or automatically discovered. If --git-dir or GIT_DIR are specified but none of --work-tree, GIT_WORK_TREE and core.worktree is specified, the current working directory is regarded as the root of the work tree.
Note that this variable is honored even when set in a configuration file in a ".git" subdirectory of a directory, and its value differs from the latter directory (e.g. "/path/to/.git/config" has core.worktree set to "/different/path"), which is most likely a misconfiguration. Running git commands in "/path/to" directory will still use "/different/path" as the root of the work tree and can cause great confusion to the users.
I have tried these settings to no avail.
[core]
worktree = ../Gits
gitdir = ../Gits
Does anyone know a way to set the git-dir
and work-tree
directories for PortableGit-1.7.0.2-preview20100309.7z for Windows so I don't have to type that in all the time?
Also is there a way to add the passphrase so I don't have to type that in either? I saw these instructions, but the portable version apparently doesn't have a ~/.profile
or ~/.bashrc
file.