git/ftp 工作流程逻辑

发布于 2024-11-06 19:34:31 字数 520 浏览 0 评论 0原文

首先我要说的是,我对 git 非常陌生,但对源代码管理有基本的了解。

这是我的情况。我目前使用常规共享主机帐户,其基本主机提供商类似于 hostgator,并使用 ftp/cpanel。我使用 ftp 从服务器上传/下载文件。

我最近在我的 Mac 上安装了 git 以及 Tower(适用于 Mac 的 Git 客户端),并且我计划使用 github 来托管我的存储库。

理论上来说,当我将文件推送到我的存储库时,我也想更新网络服务器上的实时文件以进行匹配。这样做的最佳方法是什么?

我应该将整个存储库 FTP 到我的主机吗?我想这可能会带来潜在的问题,例如更改文件权限或其他不可预见的问题。

我觉得我在这个过程中错过了一些东西。有没有办法让我将存储库的本地副本部署到我的 Web 服务器?我需要一个提供 ssh 或终端访问权限的托管帐户才能执行此操作吗?

我应该创建某种钩子吗?

任何信息将不胜感激。

Let me preface this by saying I am extremely new to git but have a basic understanding of Source Controls.

Here's my situation. I currently use a regular shared hosting account with a basic hosting provider similar to hostgator and use ftp/cpanel. I use ftp to upload/download files from the server.

I have recently installed git on my Mac as well as Tower (Git Client for Mac) and I plan on using github to host my repository.

Let's say theoretically when I go to push files to my repo, I want to update the live files on my webserver as well to match. What's the best way of doing this?

Should I just FTP the whole repo to my host? I would imagine that this could have potential problems such as changing file permissions or something else unforeseen.

I feel like I'm missing something in the process. Is there a way for me to deploy my local copy of the repo to my web server? Will I need a hosting account that offers ssh or terminal access to do this?

Should I be creating some sort of a hook.

Any info would be appreciated.

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

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

发布评论

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

评论(2

蓝梦月影 2024-11-13 19:34:31

如果只是通过 ftp 上传/同步 git repo,你可以使用 git-ftp

它非常容易使用...配置后,您要做的就是上传:

git-ftp push

但最快的方法是始终通过 ssh 执行此操作将 rsync 与排除 .git 一起使用。

[dev@dev_server website_repo]$ rsync -avz --exclude ".git" * dev@production_server:/var/www/mywebsite/.

For just uploading/syncing git repo via ftp you can use git-ftp

It is pretty easy to use ... all you do to upload once you are configured is :

git-ftp push

but the fastest way to do so will always be via ssh using rsync with exclude .git.

[dev@dev_server website_repo]$ rsync -avz --exclude ".git" * dev@production_server:/var/www/mywebsite/.
江湖彼岸 2024-11-13 19:34:31

您可以通过 ssh 访问服务器吗?如果是这样,您可以通过 ssh 直接推送到它。您可以在此页面底部找到详细信息。

Do you have ssh access to the server? If so you can just push directly to it over ssh. You can find details at the bottom of this page.

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