[llvm] r366198 - Remove username from git-llvm script, erroneously added in 366197

Sam McCall via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 16 03:14:54 PDT 2019


Author: sammccall
Date: Tue Jul 16 03:14:53 2019
New Revision: 366198

URL: http://llvm.org/viewvc/llvm-project?rev=366198&view=rev
Log:
Remove username from git-llvm script, erroneously added in 366197

Modified:
    llvm/trunk/utils/git-svn/git-llvm

Modified: llvm/trunk/utils/git-svn/git-llvm
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/git-svn/git-llvm?rev=366198&r1=366197&r2=366198&view=diff
==============================================================================
--- llvm/trunk/utils/git-svn/git-llvm (original)
+++ llvm/trunk/utils/git-svn/git-llvm Tue Jul 16 03:14:53 2019
@@ -372,7 +372,7 @@ def svn_push_one_rev(svn_repo, rev, git_
     # 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))




More information about the llvm-commits mailing list