I have just recently started git-tfs bridge and seems to work fine for a while until recently:
Here is my workflow:
1) git tfs clone
2) I create my working_branch
3) git checkout working_branch
4) I start to make changes and then I commit)
5) I do a git checkout master, git merge working_branch
6) then do a git tfs checkintool
On the checkin though, I only select a few files and not everything.
7) then I do a git tfs fetch and git rebase tfs/default
How do I commit those files that I unchecked in my previous commit, because it now thinks that there is no commit and it seem tfs/default and master are the same and no changes
You have to do
or git add dir/wildcard before you can commit anything to the local repository.