I'm just getting started with Git.
I've got:
- a repository on my local machine for web development
/www/my-web-app/
and - on a remote server I have a bare repository
/www/git-repo/
and then the actual web app/www/production-my-web-app/
.
I'm currently pushing from my local machine to the bare repository and then pulling that in the production repository.
The issue is I have a couple of config files that are different in production.
I have them ignored but I can't figure out a way to upload them (can't do it via FTP for some reason) and I'm sure I'm just missing an obvious facility of git.
Any help is appreciated, thanks!