如何设置本地 Git 存储库以与远程服务器配合使用?

发布于 2024-11-27 11:24:35 字数 152 浏览 0 评论 0原文

我正在尝试使用 git 启动并运行。我已经在我的实时站点所在的远程服务器上设置了一个存储库。 我想在该站点的副本上本地执行一些工作,然后将更改推送回远程服务器。

如何从远程存储库检出/克隆站点的副本?

我可以通过 Netbeans Git 插件执行此操作吗?

I'm trying to get up and running with git. I have set up a repository on my remote server, where my live site sits.
I want to do some work locally on a copy of that site, then push the changes back to the remote server.

How can I checkout/clone a copy of the site from the remote repository?

Can I do this via the Netbeans Git plugin?

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

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

发布评论

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

评论(1

最美不过初阳 2024-12-04 11:24:35

如果您的存储库已经设置,您应该有 git URL,它通常看起来像

git://server/somerepo.git

克隆存储库,

git clone git://server/somerepo.git

您将获得文件夹 somerepo,它将是您拥有的克隆存储库。一旦您准备好推送更改:

git add -A
git commit -m 'my changes'
git push origin master  

If you repo is already set up, you should have git URL to it, it typically looks like

git://server/somerepo.git

to clone repository

git clone git://server/somerepo.git

you will get folder somerepo, it will be cloned repository that you own. As soon as you ready to push changes:

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