diff options
author | Ehsan Shirvanian <72626662+eshirvana@users.noreply.github.com> | 2024-10-09 01:04:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-09 13:04:34 +0800 |
commit | 8bee7fcf7e214ace5e4835556bfb0f96ae3d20fb (patch) | |
tree | a6fce7b035de7af93f00b7b105414f62226dff3e | |
parent | f9a9b08896fe6fa88331fd58a1767e3981a79a8d (diff) | |
download | gitea-8bee7fcf7e214ace5e4835556bfb0f96ae3d20fb.tar.gz gitea-8bee7fcf7e214ace5e4835556bfb0f96ae3d20fb.zip |
update git book link to v2 (#32221)
Fix the dead link `https://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository` for
empty repositories to help how to clone the repository
to `https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository`
which is v2 of the git book. This also updates download git links
-rw-r--r-- | modules/git/git.go | 4 | ||||
-rw-r--r-- | templates/repo/empty.tmpl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/git/git.go b/modules/git/git.go index 05ca260855..a19dd7771b 100644 --- a/modules/git/git.go +++ b/modules/git/git.go @@ -111,12 +111,12 @@ func SetExecutablePath(path string) error { func ensureGitVersion() error { if !DefaultFeatures().CheckVersionAtLeast(RequiredVersion) { - moreHint := "get git: https://git-scm.com/download/" + moreHint := "get git: https://git-scm.com/downloads" if runtime.GOOS == "linux" { // there are a lot of CentOS/RHEL users using old git, so we add a special hint for them if _, err := os.Stat("/etc/redhat-release"); err == nil { // ius.io is the recommended official(git-scm.com) method to install git - moreHint = "get git: https://git-scm.com/download/linux and https://ius.io" + moreHint = "get git: https://git-scm.com/downloads/linux and https://ius.io" } } return fmt.Errorf("installed git version %q is not supported, Gitea requires git version >= %q, %s", DefaultFeatures().gitVersion.Original(), RequiredVersion, moreHint) diff --git a/templates/repo/empty.tmpl b/templates/repo/empty.tmpl index cb2a5ba1e9..7613643351 100644 --- a/templates/repo/empty.tmpl +++ b/templates/repo/empty.tmpl @@ -24,7 +24,7 @@ </h4> <div class="ui attached guide table segment empty-repo-guide"> <div class="item"> - <h3>{{ctx.Locale.Tr "repo.clone_this_repo"}} <small>{{ctx.Locale.Tr "repo.clone_helper" "http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository"}}</small></h3> + <h3>{{ctx.Locale.Tr "repo.clone_this_repo"}} <small>{{ctx.Locale.Tr "repo.clone_helper" "http://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository"}}</small></h3> <div class="repo-button-row"> {{if and .CanWriteCode (not .Repository.IsArchived)}} |