如何获取相对于Git存储库根目录的文件路径?

时间:2013-06-05 23:00:58

标签: git path

示例:

$ cd lib
$ git absolute-path test.c # how to do this?
lib/test.c

3 个答案:

答案 0 :(得分:22)

至少从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的文件,但它总比没有好。

答案 1 :(得分:5)

无论“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

答案 2 :(得分:0)

为了获取当前目录的路径,相对于git root,我最终这样做了:

if gitroot=$(git rev-parse --show-toplevel 2>/dev/null); then
    directory=$(realpath --relative-to="$gitroot" .)
fi

(我假设使用 Bash,但我不知道它的便携性如何。)