Forum Discussion
Git and PBIR mixes everything
- 1 year ago
Okay, I think I found the solution.
I should stash my files before changing from one branch to the other, otherwise changed files from reports go populate other branches too and create thousands of conflicts.
I'll have to do a
git stasheverytime before I do a
git checkoutWith code projects I never had this particular issue, but with lots of json files from pbip the problem is increased thousandfold.
Okay, I think I found the solution.
I should stash my files before changing from one branch to the other, otherwise changed files from reports go populate other branches too and create thousands of conflicts.
I'll have to do a
git stasheverytime before I do a
git checkout
With code projects I never had this particular issue, but with lots of json files from pbip the problem is increased thousandfold.