Run a shell command
Executes a shell command and returns its stdout as a string. Raises a ShellError if the command fails (non-zero exit code).
String): The shell command to
execute.The stdout of the command.
branch = run("git rev-parse --abbrev-ref HEAD")
print(branch)