Browse Source

report error when migration auth failed

tags/v1.2.0-rc1
Unknwon 10 years ago
parent
commit
7d9a53e114
3 changed files with 4 additions and 2 deletions
  1. +1
    -0
      README.md
  2. +1
    -0
      README_ZH.md
  3. +2
    -2
      models/repo.go

+ 1
- 0
README.md View File

@@ -97,6 +97,7 @@ There are 5 ways to install Gogs:
## Contributors

- The [core team](http://gogs.io/team) of this project.
- Ex-team members [@lunny](https://github.com/lunny) and [@fuxiaohei](https://github.com/fuxiaohei).
- See [contributors page](https://github.com/gogits/gogs/graphs/contributors) for full list of contributors.
- See [TRANSLATORS](conf/locale/TRANSLATORS) for full list of translators.



+ 1
- 0
README_ZH.md View File

@@ -80,6 +80,7 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自
## 贡献成员

- 本项目的 [开发团队](http://gogs.io/team)。
- 前团队成员 [@lunny](https://github.com/lunny) 和 [@fuxiaohei](https://github.com/fuxiaohei)。
- 您可以通过查看 [贡献者页面](https://github.com/gogits/gogs/graphs/contributors) 获取完整的贡献者列表。
- 您可以通过查看 [TRANSLATORS](conf/locale/TRANSLATORS) 文件获取完整的翻译人员列表。



+ 2
- 2
models/repo.go View File

@@ -373,9 +373,9 @@ func MigrateRepository(u *User, name, desc string, private, mirror bool, url str
// FIXME: this command could for both migrate and mirror
_, stderr, err := process.ExecTimeout(10*time.Minute,
fmt.Sprintf("MigrateRepository: %s", repoPath),
"git", "clone", "--mirror", "--bare", url, repoPath)
"git", "clone", "--mirror", "--bare", "--quiet", url, repoPath)
if err != nil {
return repo, fmt.Errorf("git clone --mirror --bare: %v", stderr)
return repo, fmt.Errorf("git clone --mirror --bare --quiet: %v", stderr)
} else if err = createUpdateHook(repoPath); err != nil {
return repo, fmt.Errorf("create update hook: %v", err)
}


Loading…
Cancel
Save