I don't like having all the content of my repo into a folder. How can I put its content directly at the root?
Here is what the repo looks like:
Currently, the carrot-market folder is at the root of your repository. If you want the content of it to be at the root, you need to:
git checkout -b my_new_branch
(doing stuff in a new branch in case something goes wrong)git mv carrot-market/* .
git commit -a -m "Put files from carrot-market folder directly at the root"
git push -u origin my_new_branch
(assuming the remote is called origin)Now, if everything looks the way you want in your new branch, you can merge it to your main branch.