例子:
$ cd lib
$ git absolute-path test.c # how to do this?
lib/test.c
至少从 git 1.6.0 开始,使用ls-files
:
$ cd lib
$ git ls-files --full-name test.c
lib/test.c
对于较旧的 git,请使用git ls-tree
:
$ cd lib
$ git ls-tree --full-name --name-only HEAD test.c
lib/test.c
这仅适用于已提交到 repo 的文件,但总比没有好。
无论“test.c”当前是否存在,将以下内容粘贴到您的 bash 终端中都可以。您可以将 git-absolute-path 函数复制到您的 .bashrc 文件中以方便将来使用。
git-absolute-path () {
fullpath=$([[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}")
gitroot="$(git rev-parse --show-toplevel)" || return 1
[[ "$fullpath" =~ "$gitroot" ]] && echo "${fullpath/$gitroot\//}"
}
git-absolute-path test.c
为了获取当前目录的路径,相对于 git root,我最终这样做了:
if gitroot=$(git rev-parse --show-toplevel 2>/dev/null); then
directory=$(realpath --relative-to="$gitroot" .)
fi
(我假设 Bash 并且我不知道它的便携性。)