Git Push into Production (FTP)

2019-01-03 20:06发布

I would like to know if there is an easy way to push a GIT repository into production (on a FTP server) ? Thanks

标签: git ftp push
14条回答
趁早两清
2楼-- · 2019-01-03 20:12

You can try FTPloy ...

https://ftploy.com

"Push changes to GitHub or Bitbucket."

"Deploy Changes automatically to your server"

You have one free project to try it out with. I am currently using for a small php website and it works quite well. A few bugs on the site but its an active project so at least they are working on it.

查看更多
【Aperson】
3楼-- · 2019-01-03 20:13

If you are putting code into production, I recommend using an "installer" such as an RPM package to install your code. That way it will be version stamped and you will be able to leverage the installer package to support updates to the production code. Git is not really designed to support production installations, it is intended to track changes to the code itself.

In any event, with an .RPM (or EXE or whatever) built, you can just FTP it to the production system and install it like any other package.

查看更多
相关推荐>>
4楼-- · 2019-01-03 20:16

There's a Ruby script here - Ruby git-deploy via FTP or SSH which uploads only the changed files in the git repo via FTP or SSH.

As mentioned in another answer, here is the Python git-ftp.py script which does a similar thing.

And here is the shell script version of git-ftp.

There is also a Ruby gem project called git-deploy which lets you setup a custom deploy via a git remote using the git push command, in the same way as the Heroku and Azure services. For this one you may need to write custom methods to deploy via FTP and I think it assumes you have SSH access to your production server.

查看更多
你好瞎i
5楼-- · 2019-01-03 20:18

If you're on a mac and have Transmit, I'd recommend the following git-tranmit script (https://gist.github.com/379750). It uses DockSend to send only the last updated files. If you're not familiar with DockSend, check out http://www.panic.com/blog/2010/11/15-secrets-of-transmit/.

Setup:

  1. cp git-transit /usr/sbin/.
  2. cd /usr/sbin
  3. chmod +x git-transmit
  4. Setup drop send for your live app
  5. Run git-transmit in your git repository.
查看更多
神经病院院长
6楼-- · 2019-01-03 20:18

I've found PHPloy a great tool for sending your Git commits to remote servers over FTP. It works from the command-line and is written in PHP (and even detects changes in submodules).

https://github.com/banago/PHPloy

git commit ...
phploy -s staging
phploy -s production

Done!

(Disclaimer: after using it for a while I've now contributed some code patches and improvements, making it Windows-compatible.)

查看更多
ら.Afraid
7楼-- · 2019-01-03 20:26

I was struggling a lot to figure out this. I have figured out an easy way to get this done from various sources (git-ftpINSTALL, git-ftpUPLOAD, git-ftpIssue, git-ftpPUSH). You can read for reference but there is no need because I have mentioned step by step process below.

First thing first: Install git and curl using brew on MAC OS

brew install git
brew install curl --with-ssl --with-libssh2
brew install git-ftp

Run the following commands:

git clone https://github.com/git-ftp/git-ftp.git
cd git-ftp
git tag # see available tags
git checkout <tag> # checkout the latest tag by replacing <tag>
sudo make install

Updating using git

git pull
git tag # see available tags
git checkout <tag> # checkout the latest tag by replacing <tag>
sudo make install

Setup

git config git-ftp.url YourFtpServerName.Net
git config git-ftp.user FtpUserName
git config git-ftp.password YourPassword

Upload all files

git ftp init

Or if the files are already there

git ftp catchup

Work and deploy

echo "Hello StackOverflow" >> index.txt
git commit application/libraries/index.txt -m "I love StackOverflow"
git ftp push

If there is an error: pathspec 'index.txt' did not match any file(s) known to git. It means the file hasn't been staged yet, so add the file and then try commit.

git add application/libraries/index.txt
git commit application/libraries/index.txt -m "I love StackOverflow"

Hope this helps.

查看更多
登录 后发表回答