Reputation: 19102
I am working on an Android App and the APK file is located in the out folder. I am also using Mercurial as version control system and cloned the repo, the clone was successful but Mercurial created two APK files one inside the bin directory and another in the root directory of the project.
Why Mercurial created these extra two APK files and how to get rid of them?
Upvotes: 0
Views: 86
Reputation: 97365
hg log FILENAME
), but adding to ignore-list doesn't mean "automatically forget and remove from repo"how to get rid of them?
hg forget
both APK (or Forget from CMenu of THG)Upvotes: 2