This is workspace branch of Blockchain Sonar's Explorer multi project repository based on orphan branches.
Branches (sub-projects):
docs
- Documentationbackend
- Sources of API servicefrontend
- Sources of Web application
- Clone the repository
git clone git@github.com:blockchain-sonar/explorer.git blockchain-sonar.explorer
- Enter into cloned directory
cd blockchain-sonar.explorer
- Initialize worktree by execute following commands
for BRANCH in backend-python backend-dart docs frontend; do git worktree add "${BRANCH}" "${BRANCH}"; done
- Open VSCode Workspace
code "Blockchain Sonar Explorer.code-workspace"
Add new orphan branch
NEW_ORPHAN_BRANCH=mybranch
git switch --orphan "${NEW_ORPHAN_BRANCH}"
git commit --allow-empty -m "Initial Commit"
git push origin "${NEW_ORPHAN_BRANCH}"