]> granicus.if.org Git - llvm/commitdiff
Remove username from git-llvm script, erroneously added in 366197
authorSam McCall <sam.mccall@gmail.com>
Tue, 16 Jul 2019 10:14:53 +0000 (10:14 +0000)
committerSam McCall <sam.mccall@gmail.com>
Tue, 16 Jul 2019 10:14:53 +0000 (10:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@366198 91177308-0d34-0410-b5e6-96231b3b80d8

utils/git-svn/git-llvm

index 13c49b5fdf0c6f2d1428dca1cffbb2fa23991e73..289898d15b5fb9af1c00a447133dcc6a314eb248 100755 (executable)
@@ -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))