git.el: Don't use --info-only when resolving a file.
[gitweb.git] / contrib / emacs / git.el
index 972c402ea0e79405ef7123dcdf748eccf9e6f3f7..38915e59aacde35f7042d7c949fe5446ed06a0f8 100644 (file)
@@ -777,7 +777,7 @@ and returns the process output as a string."
   (interactive)
   (let ((files (git-marked-files-state 'unmerged)))
     (when files
-      (apply #'git-run-command nil nil "update-index" "--info-only" "--" (git-get-filenames files))
+      (apply #'git-run-command nil nil "update-index" "--" (git-get-filenames files))
       (git-set-files-state files 'modified)
       (git-refresh-files))))