如何在redmine上克隆git仓库?

发布于 2024-10-16 20:05:09 字数 136 浏览 2 评论 0原文

我在 redmine 上将我的存储库配置为 /home/repo/gitrepo/myproj.git

现在,我想将其克隆到我的笔记本电脑上,但我看不到 url

我应该使用什么 URL?

I configure my repo as /home/repo/gitrepo/myproj.git on redmine.

Now, i want to clone it on my laptop but i cannot see the url

what url should i use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦萦几度 2024-10-23 20:05:09

如果您这样做是为了个人用途,那么通过 ssh 访问您的存储库会很好。

git clone [email protected]:gitrepo/myproj.git

但是,您可能想要搜索更强大的Redmine插件来支持Git,或者使用存储库管理系统,例如gitosis

If you're doing this for personal use, you could be well done with accessing your repository via ssh.

git clone [email protected]:gitrepo/myproj.git

However, you might want to search for a more powerful Redmine plugin for Git support, or use repository management system, such as gitosis.

屋顶上的小猫咪 2024-10-23 20:05:09

最好使用一些 git 存储库管理器来执行此操作,我建议在小型情况下使用 gitolite,请参阅指南 http://progit.org/book/ch4-8.html,然后你可以做如下

  1. 主要使用git用户进行git克隆,所以将/home/repo/gitrepo/myproj.git迁移到/home/git/repositories/myproj.git
  2. 使用新的git目录在redmine中重新配置它

更专业方式(我认为)是单独设置 git repo 并同步到 redmine git repo。

  1. 你可以通过 gitolite 或 gerrit 在其他地方设置 git repo
  2. 运行 gitsync (类似于 crontab)将此 git repo 同步到本地 git repo。

第二种情况更加独立,易于不同人管理。

It is better to use some git repositories manager to do this, and I recommend to use gitolite for small case, see guideline http://progit.org/book/ch4-8.html, then you can do as follow

  1. mostly use git user to do git clone, so migrate /home/repo/gitrepo/myproj.git to /home/git/repositories/myproj.git
  2. re-config it in redmine using new git directory

In more professional way (I think) is to set git repo seperately and sync to redmine git repo.

  1. you can setup git repo by gitolite or gerrit in other place
  2. run git sync (crontab like) to sync this git repo into your local git repo.

The second case is more independant and easy to manage by different people.

岁月苍老的讽刺 2024-10-23 20:05:09

如何在 Windows 中克隆 git 存储库?

  • 将 git bash 安装到计算机
  • 打开 git bash 命令提示符
  • 转到正确的文件夹位置:

    • cd /F-> (更改为F分区)
    • 使用 cd 到达位置路径:- Sunburst
    • 创建文件夹:- mkdir Source
    • 输入 :- git clone https://integritas.git.beanstalkapp.com/sunburst.git(git 存储库 URL) 并单击 Enter 按钮
  • 您可以看到存储库正在下载。有时它会询问用户名和密码,访问存储库 URL 包含哪个站点

How to clone a git repository in windows ?

  • Install git bash to the computer
  • Open git bash command prompt
  • Go to the correct folder location :

    • cd /F -> (for change to the F partition)
    • Using cd got to the location path :- Sunburst
    • Create folder :- mkdir Source
    • Type :- git clonehttps://integritas.git.beanstalkapp.com/sunburst.git(git repoitory URL) and click enter button
  • You can see the repository is downloading. Sometimes it will ask the username and the password which access of repository URL is contained site

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文