mirror of
https://github.com/jarun/nnn.git
synced 2024-10-31 16:37:18 +00:00
16 lines
365 B
Bash
Executable file
16 lines
365 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Description: cd to the top level of the current git repository in the current context
|
|
# Dependencies: git
|
|
# Shell: sh
|
|
# Author: https://github.com/PatrickF1
|
|
|
|
root="$(git rev-parse --show-toplevel 2>/dev/null)"
|
|
if [ -n "$root" ]; then
|
|
printf "%s" "0c$root" > "$NNN_PIPE"
|
|
else
|
|
printf "Not in a git repository"
|
|
read -r _
|
|
exit 1
|
|
fi
|