diff --git a/branches b/branches index c5d66fe..0ee6efd 100755 --- a/branches +++ b/branches @@ -50,9 +50,9 @@ if [ -z "$plainoutput" ]; then fi if [ ! -z "$latesttag" ]; then - printf "${COL_GREEN}%-25s %-20s %-10s %s${COL_RESET}\n" Name Branch Tag Path + printf "${COL_GREEN}%-20s %-25s %-10s %s${COL_RESET}\n" Name Branch Tag Path else - printf "${COL_GREEN}%-25s %-20s %s${COL_RESET}\n" Name Branch Path + printf "${COL_GREEN}%-20s %-25s %s${COL_RESET}\n" Name Branch Path fi EXITSTATE=0 @@ -81,9 +81,9 @@ for var in "$ROOTPATH"; do lt=`$GITCMD describe --abbrev=0 --tags 2> /dev/null` diff=`$GITCMD diff refs/heads/${branch}..refs/tags/${lt} 2> /dev/null` if [ ! -z "$diff" ]; then - printf "$COL_MAGENTA%-25s$COL_RESET %-20s $COL_RED%-10s$COL_RESET %s\n" $name $branch $lt $clean_dir + printf "$COL_MAGENTA%-20s$COL_RESET %-25s $COL_RED%-10s$COL_RESET %s\n" $name "$branch" $lt $clean_dir else - printf "$COL_CYAN%-25s$COL_RESET %-20s %-10s %s\n" $name $branch $lt $clean_dir + printf "$COL_CYAN%-20s$COL_RESET %-25s %-10s %s\n" $name "$branch" $lt $clean_dir fi else printf "%-25s %-20s %s\n" $name $branch $clean_dir