Skip to content

Commit

Permalink
Set up git tracking branch on push.
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Sep 24, 2015
1 parent f97c7c2 commit f726c8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/saliweb/make_web_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ def list_dir(subdir):
self._run_git_command(['add'] + files, cwd=self.topdir)
self._run_git_command(['commit', '-m', 'Initial setup'],
cwd=self.topdir)
self._run_git_command(['push'], cwd=self.topdir)
self._run_git_command(['push', '-u', 'origin', 'master'],
cwd=self.topdir)


class MakeWebService(object):
Expand Down

0 comments on commit f726c8e

Please sign in to comment.