Soluciones cortas que funcionan con submódulos, en ganchos y dentro del .git
directorio
Aquí está la respuesta corta que la mayoría querrá:
r=$(git rev-parse --git-dir) && r=$(cd "$r" && pwd)/ && echo "${r%%/.git/*}"
Esto funcionará en cualquier parte de un árbol de trabajo de git (incluso dentro del .git
directorio), pero supone que se llama a los directorios del repositorio .git
(que es el valor predeterminado). Con submódulos, esto irá a la raíz del repositorio que contiene más externo.
Si desea llegar a la raíz del submódulo actual, use:
echo $(r=$(git rev-parse --show-toplevel) && ([[ -n $r ]] && echo "$r" || (cd $(git rev-parse --git-dir)/.. && pwd) ))
Para ejecutar fácilmente un comando en la raíz de su submódulo, debajo [alias]
de su .gitconfig
, agregue:
sh = "!f() { root=$(pwd)/ && cd ${root%%/.git/*} && git rev-parse && exec \"$@\"; }; f"
Esto te permite hacer fácilmente cosas como git sh ag <string>
Solución robusta que admite directorios .git
o nombres diferentes o externos $GIT_DIR
.
Tenga en cuenta que $GIT_DIR
puede apuntar a algún lugar externo (y no ser llamado .git
), de ahí la necesidad de una mayor verificación.
Pon esto en tu .bashrc
:
# Print the name of the git working tree's root directory
function git_root() {
local root first_commit
# git displays its own error if not in a repository
root=$(git rev-parse --show-toplevel) || return
if [[ -n $root ]]; then
echo $root
return
elif [[ $(git rev-parse --is-inside-git-dir) = true ]]; then
# We're inside the .git directory
# Store the commit id of the first commit to compare later
# It's possible that $GIT_DIR points somewhere not inside the repo
first_commit=$(git rev-list --parents HEAD | tail -1) ||
echo "$0: Can't get initial commit" 2>&1 && false && return
root=$(git rev-parse --git-dir)/.. &&
# subshell so we don't change the user's working directory
( cd "$root" &&
if [[ $(git rev-list --parents HEAD | tail -1) = $first_commit ]]; then
pwd
else
echo "$FUNCNAME: git directory is not inside its repository" 2>&1
false
fi
)
else
echo "$FUNCNAME: Can't determine repository root" 2>&1
false
fi
}
# Change working directory to git repository root
function cd_git_root() {
local root
root=$(git_root) || return 1 # git_root will print any errors
cd "$root"
}
Ejecutarlo mediante la tipificación git_root
(después de reiniciar el shell: exec bash
)