update packages
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
;;; magit-patch.el --- creating and applying patches -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2008-2020 The Magit Project Contributors
|
||||
;; Copyright (C) 2008-2021 The Magit Project Contributors
|
||||
;;
|
||||
;; You should have received a copy of the AUTHORS.md file which
|
||||
;; lists all contributors. If not, see http://magit.vc/authors.
|
||||
@@ -119,15 +119,13 @@ which creates patches for all commits that are reachable from
|
||||
(save-match-data
|
||||
(find-file
|
||||
(expand-file-name
|
||||
(concat (--some (and (string-match "\\`--reroll-count=\\(.+\\)" it)
|
||||
(format "v%s-" (match-string 1 it)))
|
||||
args)
|
||||
(concat (when-let ((v (transient-arg-value "--reroll-count=" args)))
|
||||
(format "v%s-" v))
|
||||
"0000-cover-letter.patch")
|
||||
(let ((topdir (magit-toplevel)))
|
||||
(or (--some (and (string-match "\\`--output-directory=\\(.+\\)" it)
|
||||
(expand-file-name (match-string 1 it) topdir))
|
||||
args)
|
||||
topdir))))))))
|
||||
(if-let ((dir (transient-arg-value "--output-directory=" args)))
|
||||
(expand-file-name dir topdir)
|
||||
topdir))))))))
|
||||
|
||||
(transient-define-argument magit-format-patch:--in-reply-to ()
|
||||
:description "In reply to"
|
||||
@@ -308,7 +306,7 @@ same differences as those shown in the buffer are always used."
|
||||
|
||||
;;;###autoload
|
||||
(defun magit-request-pull (url start end)
|
||||
"Request upstream to pull from you public repository.
|
||||
"Request upstream to pull from your public repository.
|
||||
|
||||
URL is the url of your publicly accessible repository.
|
||||
START is a commit that already is in the upstream repository.
|
||||
|
||||
Reference in New Issue
Block a user