diff options
author | Unknwon <u@gogs.io> | 2015-07-28 21:24:24 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-07-28 21:24:24 +0800 |
commit | f83519b4528da69df41bbac3574e42903963a075 (patch) | |
tree | 501b52ff1a26b04e586a582f89507245aeaa51f8 | |
parent | ba47306a6987cf5357a08d55e5cab75a87d2b025 (diff) | |
download | gitea-f83519b4528da69df41bbac3574e42903963a075.tar.gz gitea-f83519b4528da69df41bbac3574e42903963a075.zip |
report error when migration auth failed
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | README_ZH.md | 1 | ||||
-rw-r--r-- | models/repo.go | 4 |
3 files changed, 4 insertions, 2 deletions
@@ -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. diff --git a/README_ZH.md b/README_ZH.md index 4ee6f48054..4715f2ffd1 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -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) 文件获取完整的翻译人员列表。 diff --git a/models/repo.go b/models/repo.go index f339f1737a..55accfaf40 100644 --- a/models/repo.go +++ b/models/repo.go @@ -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) } |