Recently I ran into an issue where I was working on a project which had files I wanted git to ignore, but I didn't want to commit a .gitignore file into the project. In case you don't know, any files matching a pattern in .gitignore in a git repository are ignored by git. (Unless the file(s) have already been committed, ...
Tagged with git
Ignore .gitignore in Git
- 2009-09-21 06:00:00
Automatically Deploying Website From Remote Git Repository
- 2009-05-30 02:30:40
Before I start, I'll just quickly run through where I put stuff on my server. Apache logs and config are in the ubuntu default folders: /var/log/apache2 and /etc/apache2/ respectively.
Adding a remote to existing git repo
- 2008-11-09 18:32:55
Setting up git with rails apps
- 2008-11-06 13:03:02
When I create a new rails app, I'm constantly going back to another project and stealing the .gitignore file from it to make sure that git doesn't know about certain files rails either updates frequently, or stores machine-specific data in. The latter is generally just config/database.yml, because I develop alongside my colleagues at Brightbox and we deploy via capistrano, ...