Reputation: 2400
I have a remote repository in a different directory structure than the master. A configuration file with pathnames on the master is tracked. When I pull from the master I'd like not to copy this file since the paths are different on the remote. But I'd like to also track the remote's configuration file on the remote.
Is there a good way to do this?
Upvotes: 2
Views: 80
Reputation: 1324577
Classically, you would version:
That way, you can track the evolution of those settings in your local repo while getting a separate history for the remote repo settings.
Upvotes: 5