Skip to content

Instantly share code, notes, and snippets.

@FernandoCelmer
Last active November 26, 2021 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FernandoCelmer/ccc81fea7474055f040c04b818308844 to your computer and use it in GitHub Desktop.
Save FernandoCelmer/ccc81fea7474055f040c04b818308844 to your computer and use it in GitHub Desktop.
script_checkout_branch
import os
print('Option: ')
options = ['UPY-#', 'CS2-', 'No Task', 'Sem Tarefa']
for index, text_option in enumerate(options):
print(str(index) + " - "+ options[index])
option_num = int(input())
option = options[option_num]
print('Branch: ')
branch = input()
if branch:
os.system("git checkout develop")
if option_num in [2,3]:
os.system("git checkout " + str(branch))
else:
os.system("git checkout " + str(option) + str(branch))
os.system("git pull")
print("===== Checkout branch " + str(branch))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment