Index: docs/GettingStarted.rst =================================================================== --- docs/GettingStarted.rst +++ docs/GettingStarted.rst @@ -512,43 +512,43 @@ .. code-block:: console - % git clone http://llvm.org/git/llvm.git + % git clone https://git.llvm.org/git/llvm.git If you want to check out clang too, run: .. code-block:: console % cd llvm/tools - % git clone http://llvm.org/git/clang.git + % git clone https://git.llvm.org/git/clang.git If you want to check out compiler-rt (required to build the sanitizers), run: .. code-block:: console % cd llvm/projects - % git clone http://llvm.org/git/compiler-rt.git + % git clone https://git.llvm.org/git/compiler-rt.git If you want to check out libomp (required for OpenMP support), run: .. code-block:: console % cd llvm/projects - % git clone http://llvm.org/git/openmp.git + % git clone https://git.llvm.org/git/openmp.git If you want to check out libcxx and libcxxabi (optional), run: .. code-block:: console % cd llvm/projects - % git clone http://llvm.org/git/libcxx.git - % git clone http://llvm.org/git/libcxxabi.git + % git clone https://git.llvm.org/git/libcxx.git + % git clone https://git.llvm.org/git/libcxxabi.git If you want to check out the Test Suite Source Code (optional), run: .. code-block:: console % cd llvm/projects - % git clone http://llvm.org/git/test-suite.git + % git clone https://git.llvm.org/git/test-suite.git Since the upstream repository is in Subversion, you should use ``git pull --rebase`` instead of ``git pull`` to avoid generating a non-linear history @@ -622,7 +622,7 @@ .. code-block:: console - % git clone http://llvm.org/git/llvm.git + % git clone https://git.llvm.org/git/llvm.git % cd llvm % git svn init https://llvm.org/svn/llvm-project/llvm/trunk --username= % git config svn-remote.svn.fetch :refs/remotes/origin/master @@ -630,7 +630,7 @@ # If you have clang too: % cd tools - % git clone http://llvm.org/git/clang.git + % git clone https://git.llvm.org/git/clang.git % cd clang % git svn init https://llvm.org/svn/llvm-project/cfe/trunk --username= % git config svn-remote.svn.fetch :refs/remotes/origin/master Index: docs/Proposals/GitHubMove.rst =================================================================== --- docs/Proposals/GitHubMove.rst +++ docs/Proposals/GitHubMove.rst @@ -214,7 +214,7 @@ This variant recommends moving each LLVM sub-project to a separate Git repository. This mimics the existing official read-only Git repositories -(e.g., http://llvm.org/git/compiler-rt.git), and creates new canonical +(e.g., https://git.llvm.org/git/compiler-rt.git), and creates new canonical repositories for each sub-project. This will allow the individual sub-projects to remain distinct: a @@ -374,7 +374,7 @@ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ With the Monorepo, the existing single-subproject mirrors (e.g. -http://llvm.org/git/compiler-rt.git) with git-svn read-write access would +https://git.llvm.org/git/compiler-rt.git) with git-svn read-write access would continue to be maintained: developers would continue to be able to use the existing single-subproject git repositories as they do today, with *no changes to workflow*. Everything (git fetch, git svn dcommit, etc.) could continue to @@ -487,7 +487,7 @@ svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm # or with Git - git clone http://llvm.org/git/llvm.git + git clone https://git.llvm.org/git/llvm.git After the move to GitHub, you would do either:: @@ -509,7 +509,7 @@ # direct SVN checkout svn co https://user@llvm.org/svn/llvm-project/llvm/trunk llvm # or using the read-only Git view, with git-svn - git clone http://llvm.org/git/llvm.git + git clone https://git.llvm.org/git/llvm.git cd llvm git svn init https://llvm.org/svn/llvm-project/llvm/trunk --username= git config svn-remote.svn.fetch :refs/remotes/origin/master @@ -566,7 +566,7 @@ You can use *git-svn* and one of the sub-project mirrors:: # Clone from the single read-only Git repo - git clone http://llvm.org/git/llvm.git + git clone https://git.llvm.org/git/llvm.git cd llvm # Configure the SVN remote and initialize the svn metadata $ git svn init https://github.com/joker-eph/llvm-project/trunk/llvm —username=... @@ -623,21 +623,21 @@ Or using git-svn:: - git clone http://llvm.org/git/llvm.git + git clone https://git.llvm.org/git/llvm.git cd llvm/ git svn init https://llvm.org/svn/llvm-project/llvm/trunk --username= git config svn-remote.svn.fetch :refs/remotes/origin/master git svn rebase -l git checkout `git svn find-rev -B r258109` cd tools - git clone http://llvm.org/git/clang.git + git clone https://git.llvm.org/git/clang.git cd clang/ git svn init https://llvm.org/svn/llvm-project/clang/trunk --username= git config svn-remote.svn.fetch :refs/remotes/origin/master git svn rebase -l git checkout `git svn find-rev -B r258109` cd ../../projects/ - git clone http://llvm.org/git/libcxx.git + git clone https://git.llvm.org/git/libcxx.git cd libcxx git svn init https://llvm.org/svn/llvm-project/libcxx/trunk --username= git config svn-remote.svn.fetch :refs/remotes/origin/master