summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc20
1 files changed, 0 insertions, 20 deletions
diff --git a/.bashrc b/.bashrc
index 99a4c9ee..5c8136f3 100644
--- a/.bashrc
+++ b/.bashrc
@@ -203,26 +203,6 @@ install-as-auto () {
fi
}
-# when mosh isn't installed on the server, but tmux is, use this to
-# get a fairly persistent set of remote shell sessions. I used to use
-# autossh here, but that means surprise dialogs asking to authorise
-# use of an SSH key; instead, just hit <Up><Ret> to restart a window's
-# connection when it's convenient
-#
-# (The reason that I get prompted is because I have a short
-# ServerAliveInterval and low ServerAliveCountMax, but that's
-# desirable, because unresponsive SSH sessions are a massive pain)
-smux () {
- case "$2" in
- "")
- ssh -t "$1" "tmux new-session -A -s default"
- ;;
- *)
- ssh -t "$1" "tmux new-session -A -s $2"
- ;;
- esac
-}
-
# try to get an upstream remote
upstream-remote-from-copyright () {
toplevel="$(git rev-parse --show-toplevel)"