Skip to content

Commit

Permalink
[fix] push command
Browse files Browse the repository at this point in the history
  • Loading branch information
Shayen committed Nov 16, 2018
1 parent 7640c77 commit f9f6249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wrappers/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def push(repo_config):
# commands.append('git fetch ' + repo_config['remote'])
commands.append('git add --all')
commands.append('git commit -m \"%s\"'%commit_message)
commands.append('git push %s --tags'% repo_config['remote'])
commands.append('git push')#% repo_config['remote'])
print commands
# commands.append('git reset --hard ' + repo_config['remote'] + "/" + repo_config['branch'])
# commands.append('git submodule update --init --recursive')
Expand Down

0 comments on commit f9f6249

Please sign in to comment.