mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 13:24:17 +00:00
Merge pull request #1105 from linquize/migrate-git
Allow to migrate through git:// protocol
This commit is contained in:
commit
f7219b0cf0
|
@ -181,9 +181,9 @@ func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remote address can be HTTP/HTTPS URL or local path.
|
// Remote address can be HTTP/HTTPS/Git URL or local path.
|
||||||
remoteAddr := form.CloneAddr
|
remoteAddr := form.CloneAddr
|
||||||
if strings.HasPrefix(form.CloneAddr, "http") {
|
if strings.HasPrefix(form.CloneAddr, "http://") || strings.HasPrefix(form.CloneAddr, "https://") || strings.HasPrefix(form.CloneAddr, "git://") {
|
||||||
u, err := url.Parse(form.CloneAddr)
|
u, err := url.Parse(form.CloneAddr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.Data["Err_CloneAddr"] = true
|
ctx.Data["Err_CloneAddr"] = true
|
||||||
|
|
Loading…
Reference in a new issue