We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 295194a commit 299ae39Copy full SHA for 299ae39
2 files changed
EasyKey.git/ezk-git-functions.sh
@@ -257,10 +257,11 @@ function interactiveStage () {
257
}
258
259
function changeBranch () {
260
- git branch --all
261
- echo "Which branch?"
262
- read bname
263
- git checkout $bname
+ git branch --all
+ echo "Which branch?"
+ read bname
+ [ "${bname}" = "" ] && waitonexit && return
264
+ git checkout $bname
265
266
267
function fetchAll () {
shellmenu.sh
@@ -23,8 +23,8 @@ actualmenu="EasyKey.shellmenu"
23
actualsubmenuname="Your commands:"
24
menuHeadingFGClr="$clrWhite"
25
menuHeadingBGClr="$clrBlue"
26
-submenuFGClr="$clrCyan"
27
-submenuBGClr="$clrBlack"
+submenuFGClr="$clrWhite"
+submenuBGClr="$clrPurple"
28
delimiter=⊕
29
formattedTop=""
30
formattedBottom=""
0 commit comments