0

I'm not sure how I broke git, I trying to do git pull upstream target-branch

I got error of

The following untracked working tree files would be overwritten by merge

but when I do git status I don't see any untrack files.

Sharon Chai
  • 507
  • 1
  • 6
  • 20

1 Answers1

0

git status shows you only non-ignored files, but you probably have ignored files in addition. See git ls-files -o for a list.

Matthieu Moy
  • 15,151
  • 5
  • 38
  • 65