Git
Git All You Can
admin — Tue, 10/20/2009 - 02:31
"The Git source code control system continues to win over developers who are impressed with the speed and flexibility of the distributed workflow."
The best guides to git are actually free.
Setting up a remote git repository is also very simple. So rather than paying for github private repository, you can just set it up on the server.
mkdir project.git
cd project.git
git --bare init
On you local project folder, do:
git init (if git is not yet initialized)
git remote add origin user@servername.com:~/project.git
There's a rather lengthy guide which is written for teams using git. Click here to check Git Internals PDF.
Deploy and Manage Drupal Sites With Git And Capistrano
admin — Sat, 10/17/2009 - 19:51
Drupal is an interesting platform. There have been several successful projects that were built using Drupal like Amazee.com. We all think of Drupal as a CMS because it is primarily a CMS but it is also a framework in the sense that it is possible to extend the CMS and develop modules for new features.
In my official blog site, I wrote a post on how to deploy a Drupal site using git and capistrano. I will soon add more tips on Git and Capistrano for PHP and Drupal developers.