Soluzioni brevi che funzionano con sottomoduli, ganci e all'interno di .git
directory
Ecco la risposta breve che molti vorranno:
r=$(git rev-parse --git-dir) && r=$(cd "$r" && pwd)/ && echo "${r%%/.git/*}"
Funzionerà ovunque in un albero di lavoro git (incluso all'interno della .git
directory), ma presuppone che vengano chiamate le directory del repository .git
(che è l'impostazione predefinita). Con i sottomoduli, questo andrà alla radice del repository contenente più esterno.
Se vuoi arrivare alla radice del sottomodulo corrente usa:
echo $(r=$(git rev-parse --show-toplevel) && ([[ -n $r ]] && echo "$r" || (cd $(git rev-parse --git-dir)/.. && pwd) ))
Per eseguire facilmente un comando nella tua radice del sottomodulo, sotto [alias]
nella tua .gitconfig
, aggiungi:
sh = "!f() { root=$(pwd)/ && cd ${root%%/.git/*} && git rev-parse && exec \"$@\"; }; f"
Questo ti permette di fare facilmente cose come git sh ag <string>
Soluzione robusta che supporta nomi diversi o esterni .git
o$GIT_DIR
directory.
Nota che $GIT_DIR
potrebbe puntare da qualche parte esterno (e non essere chiamato.git
), quindi la necessità di ulteriori controlli.
Metti questo nel tuo .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"
}
Esegui digitando git_root
(dopo il riavvio del guscio: exec bash
)