diff options
author | NARUSE, Yui <[email protected]> | 2021-02-02 19:12:49 +0900 |
---|---|---|
committer | NARUSE, Yui <[email protected]> | 2021-02-02 19:12:49 +0900 |
commit | ce2062dee6405030091966c47b1124ec9a4c62d4 (patch) | |
tree | c39b7725c434cec3082b2849a72b8da3151b2727 | |
parent | b03aa7dcd73a55c4b76600830a90bd0bc725d5a3 (diff) |
Drop pushing local repo
I want to push another repo/branch to run CI before pushing it to
official branch.
-rwxr-xr-x | tool/merger.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tool/merger.rb b/tool/merger.rb index 2ea5d889cc..bac3e1194a 100755 --- a/tool/merger.rb +++ b/tool/merger.rb @@ -220,8 +220,7 @@ class << Merger else current_branch = IO.popen(['git', 'rev-parse', '--abbrev-ref', 'HEAD'], &:read).strip execute('git', 'add', '.') && - execute('git', 'commit', '-F', file) && - execute('git', 'push', ORIGIN, current_branch) + execute('git', 'commit', '-F', file) end end |