Home > Enterprise >  Can't remove untracked changes at Git (x1 deleted and x1 modified file)
Can't remove untracked changes at Git (x1 deleted and x1 modified file)

Time:07-01

I'm having a big trouble with my local repository. I'm currently using Git Flow so when a new development has to be started, I went to "develop" branch but I always found that there are 2 changes at my working directory:

 D "src/use_cases/aggregator/update_stores_status_use_case.py~other: (UseCase) Refactor naming"
?? src/use_cases/aggregator/update_stores_status_use_case.py~other

I tried those things to remove that changes and start working at a clean environment:

  • Removed all local repository and clone it again making sure no Git GUI client or IDE is opened.
  • Executed git clean, reset, checkout... sometimes the "??" marked is removing, the "D" one isn't going anywhere
  • Related