Gist for Automating remote and local git commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fabric.api import * | |
from fabric.colors import red, green | |
from time import sleep | |
from pprint import pprint | |
from fabric.contrib.files import exists | |
def local_git(): | |
is_done = True | |
try: | |
with lcd('/Development/PetProjects/OhBugz/src/ohbugztracker/'): | |
r = local('git status', capture=True) | |
# Make the branch is not Upto date before doing further operations | |
if 'Your branch is up-to-date with' not in r.stdout: | |
local('git add .', capture=True) | |
local('git commit -m Initial Commit') | |
local('git push origin master') | |
except Exception as e: | |
print(str(e)) | |
is_done = False | |
finally: | |
return is_done | |
def remote_git(): | |
is_done = True | |
try: | |
with settings(host_string=host.rstrip('\n').strip(), warn_only=True): | |
with cd('public_html/code'): | |
run('git stash') | |
run('git pull origin master') | |
except Exception as e: | |
print(str(e)) | |
is_done = True | |
finally: | |
return is_done | |
def deploy(): | |
result = local_git() | |
if result: | |
print('Time to deploy') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, where does the "host" var come from?