Am 10.10.20 um 18:43 schrieb Philippe Blain: > The thing is, I can't reproduce it on a fresh clone. If I could, this would be a reproducer: > > ``` > $ git clone git@xxxxxxxxxx:phil-blain/git.git && cd git > $ git checkout stale-branch > $ git checkout other-branch > $ git status # the following is what is shown in my old clone > On branch other-branch > Untracked files: > (use "git add <file>..." to include in what will be committed) > > git-legacy-stash > git-remote-testsvn > t/helper/test-line-buffer > t/helper/test-svn-fe > > nothing added to commit but untracked files present (use "git add" to track) > ``` This is normal. These 4 files are build products and were never committed files. They had been mentioned in .gitignore in the past, but are not anymore. Apparently, your old repository had these build products still lying around. If you insert `make` in your instructions above after `git checkout stale-branch`, you should be able to observe the same un-cleanlyness in a new clone. -- Hannes