X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.shellrc;h=513431d56037a9e60c7e5774e003ec8f67957160;hb=cd1db036a616b38a45e7d1a711131187d91eecfc;hp=edb29b8d6c863b5d43dc94c76de31bd7b1a17519;hpb=d16290e59177c73d7f41eca832b30ee49656d2c0;p=dotfiles.git diff --git a/.shellrc b/.shellrc index edb29b8..513431d 100644 --- a/.shellrc +++ b/.shellrc @@ -220,13 +220,7 @@ if test -x /usr/bin/git >/dev/null 2>&1; then remote="$1" fi - if [ -z "$remote" ]; then - echo "Cannot find remote for branch $branch" >&2 - echo "Usage: cdremote [remote_name]" >&2 - return 1 - fi - - if git config --get remote.$remote.url | grep -q '^\(file:/\|/\|\.\./\)'; then + if [ -n "$remote" ] && git config --get remote.$remote.url | grep -q '^\(file:/\|/\|\.\./\)'; then cdgitpath remote.$remote.url else @@ -276,7 +270,7 @@ if test -x /usr/bin/git >/dev/null 2>&1; then # list remotes with URLs matching a regexp _list_remotes() { - if [ $# -ne 1 ]; then + if [ $# -ne 1 ]; then echo "Usage: _list_remotes remote_regexp" >&2 return 1 fi