[PATCH] D27274: [git-llvm] Use --force-interactive when commiting to prompt password

Mehdi AMINI via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 30 11:23:04 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL288266: [git-llvm] Use --force-interactive when commiting to enable SVN to prompt… (authored by mehdi_amini).

Changed prior to commit:
  https://reviews.llvm.org/D27274?vs=79789&id=79790#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D27274

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


Index: llvm/trunk/utils/git-svn/git-llvm
===================================================================
--- llvm/trunk/utils/git-svn/git-llvm
+++ llvm/trunk/utils/git-svn/git-llvm
@@ -208,7 +208,7 @@
     # Now we're ready to commit.
     commit_msg = git('show', '--pretty=%B', '--quiet', rev)
     if not dry_run:
-        log(svn(svn_repo, 'commit', '-m', commit_msg))
+        log(svn(svn_repo, 'commit', '-m', commit_msg, '--force-interactive'))
         log('Committed %s to svn.' % rev)
     else:
         log("Would have committed %s to svn, if this weren't a dry run." % rev)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27274.79790.patch
Type: text/x-patch
Size: 591 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161130/f9b394b9/attachment.bin>


More information about the llvm-commits mailing list