I would like some advice on how to use Git locally on my computer along with Visual Studio and a TFS server. Unfortunately the technical leader of my company has set TFS with the exclusive check-out policy and so every time someone checks out a file, it can't be edited by someone else.
What is the right way to make the two systems live together?
I would try to use Git-TF but I'm not convinced with the checkin phase. The workflow should be as the following:
- clone the project
- switch to offline mode for Visual Studio
- work offline with Git
- fetch from the TFS server and rebase
- check-in?
The problem is: how do I check-in my files if someone else has already checked out the files I need to change? How does Git-TF really work when checking-in files?
Another workflow that came to my mind, without Git-TF, could be the following:
- open the TFS project
- switch to offline mode
- create a new branch with Git
- work on the branch
- return to the master branch, update it
- exclusively checkout the files which have been changed on my Git branch
- merge the branch on master
- check in with TFS (after switch to online mode???)
What do you recommend?
Thank you!
Luca
git-tfcan't checkin if there's a lock, just like any other TFS client.git-tfsimply looks at the differences to a file between the last changeset and theHEADof your git repository and tries to apply those changes and check-in. Nothing magic. – Edward Thomson Jan 28 at 23:13