Tag archive: git

Using git hooks to check syntax errors

Git is currently my favorite source code versioning tool and while I used Subversion, I knew about something called hooks that I never used. Essentially, hooks allow you to execute custom scripts when you perform certain actions on your repository… continue reading »

Using Git over non-standard SSH ports

I’ve configured some deployment servers to use SSH over non-standard SSH ports and that can really be a problem when you want to use that with git. No matter what you do, git would always attempt to connect through the… continue reading »

Migrating from SVN to GIT

One of the big benefits of using source code versioning (or source code management systems) is that it allows you to maintain a history of all the changes in code and allows for easy collaboration amongst several developers on the… continue reading »