forked from OSchip/llvm-project
Remove username from git-llvm script, erroneously added in 366197
llvm-svn: 366198
This commit is contained in:
parent
eb72138340
commit
1781c28a0d
|
@ -372,7 +372,7 @@ def svn_push_one_rev(svn_repo, rev, git_to_svn_mapping, dry_run):
|
|||
# Now we're ready to commit.
|
||||
commit_msg = git('show', '--pretty=%B', '--quiet', rev)
|
||||
if not dry_run:
|
||||
commit_args = ['commit', '-m', commit_msg, '--username', 'ktkachov']
|
||||
commit_args = ['commit', '-m', commit_msg]
|
||||
if '--force-interactive' in svn(svn_repo, 'commit', '--help'):
|
||||
commit_args.append('--force-interactive')
|
||||
log(svn(svn_repo, *commit_args))
|
||||
|
|
Loading…
Reference in New Issue