I'm so tired of explaining benefits of using DVCS over CVCS to my teammates. Some of them scared of the learning curve, some of them see no reasons because for them: "tis the same fokin ting". Personally I'm so tired of TFS and its problems. Everytime when I need to work on some small "fix" I have to work on the main dev branch and shelve my stuff in and out, cause branching with TFS so darn painful compared to Git. I have to reconnect my VPN client every single time I switch from ethernet to wifi and that happens a lot.
So I started thinking maybe I could use Git locally and do whatever I want on my local repo, and when the time comes push it to TFS. I know it's possible, but what's the best way to do that? Can I just git init
the current repo and put the entire .git
folder into ignored list, so TFS wouldn't check it in or doing just that isn't simply enough?
Until the official update of Visual Studio comes, that will support both git and tfs, I have to use some hacks to do what I want.