1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-05 22:20:24 -08:00

Prefer https: to git: URIs

Prefer https: to git: URIs on Savannah.
The idea is to avoid some adversary-in-the-middle attacks
on developers.
This commit is contained in:
Paul Eggert 2023-02-04 14:24:37 -08:00
parent c39c26e33f
commit 7e1c7db1cb
7 changed files with 8 additions and 8 deletions

View file

@ -18,7 +18,7 @@ To configure Git for Emacs development, you can run the following:
The following shell commands then build and run Emacs from scratch: The following shell commands then build and run Emacs from scratch:
git clone git://git.sv.gnu.org/emacs.git git clone https://git.savannah.gnu.org/git/emacs.git
cd emacs cd emacs
./autogen.sh ./autogen.sh
./configure ./configure

View file

@ -4,7 +4,7 @@ The Emacs repository is hosted on Savannah. The following Git command
will clone the repository to the 'emacs' subdirectory of the current will clone the repository to the 'emacs' subdirectory of the current
directory on your local machine: directory on your local machine:
git clone git://git.sv.gnu.org/emacs.git git clone https://git.savannah.gnu.org/git/emacs.git
To build the repository code, simply run 'make' in the 'emacs' To build the repository code, simply run 'make' in the 'emacs'
directory. This should work if your files are freshly checked out directory. This should work if your files are freshly checked out

View file

@ -294,7 +294,7 @@ Po Lu
Tramp Tramp
Maintainer: Michael Albinus Maintainer: Michael Albinus
Repository: git://git.savannah.gnu.org/tramp.git Repository: https://git.savannah.gnu.org/git/tramp.git
Mailing List: tramp-devel@gnu.org Mailing List: tramp-devel@gnu.org
Bug Reports: M-x tramp-bug Bug Reports: M-x tramp-bug
Notes: For backward compatibility requirements, see Notes: For backward compatibility requirements, see
@ -316,7 +316,7 @@ Modus themes
Org Mode Org Mode
Home Page: https://orgmode.org/ Home Page: https://orgmode.org/
Maintainer: Org Mode developers Maintainer: Org Mode developers
Repository: git://git.sv.gnu.org/emacs/org-mode.git Repository: https://git.savannah.gnu.org/git/emacs/org-mode.git
Mailing list: emacs-orgmode@gnu.org Mailing list: emacs-orgmode@gnu.org
Bug Reports: M-x org-submit-bug-report Bug Reports: M-x org-submit-bug-report
Notes: Org Mode is maintained as a separate project that is Notes: Org Mode is maintained as a separate project that is

View file

@ -23,7 +23,7 @@
# written by Paul Eggert # written by Paul Eggert
GNULIB_URL=git://git.savannah.gnu.org/gnulib.git GNULIB_URL=https://git.savannah.gnu.org/git/gnulib.git
GNULIB_MODULES=' GNULIB_MODULES='
alloca-opt binary-io byteswap c-ctype c-strcase alloca-opt binary-io byteswap c-ctype c-strcase

View file

@ -3,7 +3,7 @@ NOTES ON THE EMACS PACKAGE ARCHIVE
The GNU Emacs package archive, at elpa.gnu.org, is managed using a Git The GNU Emacs package archive, at elpa.gnu.org, is managed using a Git
repository named "elpa", hosted on Savannah. To check it out: repository named "elpa", hosted on Savannah. To check it out:
git clone git://git.sv.gnu.org/emacs/elpa git clone https://git.savannah.gnu.org/git/emacs/elpa
cd elpa cd elpa
make setup make setup

View file

@ -361,7 +361,7 @@ Another way is to follow the terminal session below:
@example @example
@group @group
$ cd ~/emacs $ cd ~/emacs
$ git clone git://git.savannah.gnu.org/tramp.git $ git clone https://git.savannah.gnu.org/git/tramp.git
@end group @end group
@end example @end example

View file

@ -115,7 +115,7 @@ put the Emacs source into C:\emacs\emacs-master:
mkdir /c/emacs mkdir /c/emacs
cd /c/emacs cd /c/emacs
git clone git://git.sv.gnu.org/emacs.git emacs-master git clone https://git.savannah.gnu.org/git/emacs.git emacs-master
This will produce the development sources, i.e. the master branch of This will produce the development sources, i.e. the master branch of
the Emacs Git repository, in the directory C:\emacs\emacs-master. the Emacs Git repository, in the directory C:\emacs\emacs-master.