Using git to manage a website
toroid.org
Using git to manage a website
1–10 of 52 posts
Re: Using git to manage a website
#2Re: Using git to manage a website
#3Is it bad, that I simply SSH into the server and do a "git pull"?
As for the difference b/w your method and the OPs, he defines it here :
> This is more convenient than defining your workstation as a remote on the server, and running "git pull" by hand or from a cron job, and it doesn't require your workstation to be accessible by ssh.
Re: Using git to manage a website
#4Re: Using git to manage a website
#5Can I use git to manage a Drupal-managed website?
Re: Using git to manage a website
#6Re: Using git to manage a website
#7Re: Using git to manage a website
#8Can I use git to manage a Drupal-managed website?
but what you want in code and what you want in the DB will vary from page to page and feature to feature so often just manually redo stuff (in dev env and then again in production) because deploying changes by code is more effort then its worth.
Re: Using git to manage a website
#9Is it bad, that I simply SSH into the server and do a "git pull"?
If you push to your web server, only your public key is exposed if your web server is compromised.
Re: Using git to manage a website
#10I wanted to teach myself Ruby and I figured this was a great way to maintain a site, as I'm terrible with both SQL and security. Git solves security and DataMapper solves the SQL, and my Ruby lubricates the rest.