Skip to content

Commit

Permalink
manual: Switch Urls from Http to Https
Browse files Browse the repository at this point in the history
  • Loading branch information
shoefone authored and tarsius committed Apr 16, 2023
1 parent 23904be commit f59df79
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/magit.org
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ yourself with it by reading the documentation in the Emacs manual, see
#+begin_src emacs-lisp
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/") t)
'("melpa" . "https://melpa.org/packages/") t)
#+end_src

- To use Melpa-Stable:

#+begin_src emacs-lisp
(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "http://stable.melpa.org/packages/") t)
'("melpa-stable" . "https://stable.melpa.org/packages/") t)
#+end_src

Once you have added your preferred archive, you need to update the
Expand Down Expand Up @@ -7875,7 +7875,7 @@ When showing logs, Magit limits the number of commits initially shown
in the hope that this avoids unnecessary work. When ~--graph~ is
used, then this unfortunately does not have the desired effect for
large histories. Junio, Git's maintainer, said on the git mailing
list (http://www.spinics.net/lists/git/msg232230.html): "~--graph~ wants
list (https://www.spinics.net/lists/git/msg232230.html): "~--graph~ wants
to compute the whole history and the max-count only affects the output
phase after ~--graph~ does its computation".

Expand Down Expand Up @@ -8867,7 +8867,7 @@ also affects the diffs displayed inside Magit.

*** How does branching and pushing work?

Please see [[*Branching]] and http://emacsair.me/2016/01/17/magit-2.4
Please see [[*Branching]] and https://emacsair.me/2016/01/17/magit-2.4

*** Should I disable VC?

Expand Down
8 changes: 4 additions & 4 deletions docs/magit.texi
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ To use Melpa:
@lisp
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/") t)
'("melpa" . "https://melpa.org/packages/") t)
@end lisp

@itemize
Expand All @@ -458,7 +458,7 @@ To use Melpa-Stable:
@lisp
(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "http://stable.melpa.org/packages/") t)
'("melpa-stable" . "https://stable.melpa.org/packages/") t)
@end lisp

Once you have added your preferred archive, you need to update the
Expand Down Expand Up @@ -9774,7 +9774,7 @@ When showing logs, Magit limits the number of commits initially shown
in the hope that this avoids unnecessary work. When @code{--graph} is
used, then this unfortunately does not have the desired effect for
large histories. Junio, Git's maintainer, said on the git mailing
list (@uref{http://www.spinics.net/lists/git/msg232230.html}): "@code{--graph} wants
list (@uref{https://www.spinics.net/lists/git/msg232230.html}): "@code{--graph} wants
to compute the whole history and the max-count only affects the output
phase after @code{--graph} does its computation".
Expand Down Expand Up @@ -10825,7 +10825,7 @@ echo "*.gpg filter=gpg diff=gpg" > .gitattributes
@node How does branching and pushing work?
@appendixsubsec How does branching and pushing work?
Please see @ref{Branching} and @uref{http://emacsair.me/2016/01/17/magit-2.4}
Please see @ref{Branching} and @uref{https://emacsair.me/2016/01/17/magit-2.4}
@node Should I disable VC@?
@appendixsubsec Should I disable VC@?
Expand Down

0 comments on commit f59df79

Please sign in to comment.