I'm very new to SourceTree and Git/Hg, and I'm stuck at the very beggining of everything.
I wanted to track the versions of a website under construction.
So I added the folder containing codes to SourceTree Bookmarks.
Although I wanted to use Git, I accidentally chose Mercurial instead.
After that, I tried to change it to Git, but I couldn't; I deleted the bookmark and repeated the addition and this time it was automatically set to Hg.
Is it difficult to set it back to Git? If it's doable even for a beginner, could somebody tell me how?
You'll want to re-remove the repository from sourcetree. Navigate to the location in Explorer/Finder, and delete the .hg folder (may be hidden). Now you should be able to add the project to sourcetree with the option of which type of repository to use.
Keep in mind that you should not delete this directory on anything but a new repository because you will lose your entire history and all previous versions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks a lot! It worked well. Now I've got an idea of what .hg and .git files are.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Once you've actually done some commits, those directories hold not only the config for your repository, but also the contents of all the previous commits as well, so think twice about deleting the directory for an existing project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.