#!/bin/bash
cd "$(dirname "$0")"
cd ../../../
echo -n "Enter branch name to PARAM [ENTER]: "
read name
git branch "$name"
bash