1
0
mirror of https://gitlab.com/JKANetwork/jka-toolkit.git synced 2026-02-16 10:01:33 +01:00

Update gitdit

This commit is contained in:
JoseluCross
2016-06-28 15:52:18 +02:00
parent bde0e639df
commit d3f0e252fc

View File

@@ -1,8 +1,8 @@
#!/bin/bash
VERSION="0.1.3"
gitopt=`dialog --stdout --scrollbar --menu "gitdit - Git DIalog inTerface" 0 0 6 p "Descargar actualizaciones del git (Hacer pull)" s "Subir actualizaciones al git (Hacer push)" c "Descargar un nuevo git (Hacer clone)" b "Cambiar de branch/rama (Hacer checkout)" m "Unir ramas (Hacer merge)"`
alias brunch='git branch --list'
actual="origin $(brunch | grep "^*" | cut -f1 -d" ")"
brunch=`git branch --list`
actual="origin $($brunch | grep "^*" | cut -f1 -d" ")"
case $gitopt in
"p") git pull $actual;;
"s") commit=`dialog --stdout --inputbox "Cambios (texto commit)" 10 50 "changes"`
@@ -18,9 +18,9 @@ case $gitopt in
"b")
j=0
rama=""
for i in $(brunch)
for i in $($brunch)
do
if [ $i != "*" ]
if [ $i != "*" ];then
rama="$rama $j $i"
lista[$j]=$i
let j++