We are using a git repository to store our project. We have our branches departing from the original branch. But now we want to create a small new project to track some docu
i found this help:
git checkout --orphan empty.branch.name git rm --cached -r . echo "init empty branch" > README.md git add README.md git commit -m "init empty branch"