Reputation: 3698
I am in the process of migrating from visual source un-safe (VSS) to Git.
One of the good features of VSS is that you can put the same script in different folders, and when you check it out it updates the script in all the folders you have placed it.
if there a way to achieve the same thing using Git? TIA M
Upvotes: 0
Views: 60
Reputation: 11581
Git itself has no such mirroring feature for files within a project. I see two possible solutions:
That said, I consider said VSS feature a gross misfeature that I think you should try to get away from instead of mimic with Git.
If you want to share files between projects you can look into submodules.
Upvotes: 3