From 1f3fe552552b30058c570e8d593c2e01750330e5 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 21 Aug 2017 00:06:31 +0300 Subject: [PATCH] .shellrc: Get remote for cdremote from the current branch --- .shellrc | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.shellrc b/.shellrc index 1b15d83..8d63ee7 100644 --- a/.shellrc +++ b/.shellrc @@ -177,11 +177,23 @@ chlo() { clear; cd; >$HISTFILE; unset HISTFILE; history -c; logout || exit; } if test -x /usr/bin/git >/dev/null 2>&1; then # chdir to a remote's directory (if the remote is on the local FS) cdremote() { - if [ -z "$1" -o -n "$2" ]; then - echo "Usage: cdremote remote_name" >&2 + if [ -z "$1" ]; then + branch="`git rev-parse --abbrev-ref HEAD`" + remote="`git config --get branch.$branch.remote`" + elif [ -n "$2" ]; then + echo "Usage: cdremote [remote_name]" >&2 return 1 + else + remote="$1" fi - cd "`git config --get remote.$1.url`" + + if [ -z "$remote" ]; then + echo "Cannot find remote for branch $branch" >&2 + echo "Usage: cdremote [remote_name]" >&2 + return 1 + fi + + cd "`git config --get remote.$remote.url`" } if test -n "$BASH_VERSION"; then -- 2.39.2