Set up barkcli for a team with git-based collaboration.
One team member initializes barkcli in the shared repo.
barkcli init
git add .board
git commit -m "chore: initialize barkcli"
git pushOther team members pull the changes.
git pull
barkcli list # See the same boardCreate feature branches and work on tasks.
git checkout -b feature/auth
barkcli move jwt-login doing
# ... work on tasks ...
barkcli done jwt-login
git add .board
git commit -m "feat: complete JWT login"
git pushMerge branches and sync task changes.
git checkout main
git merge feature/auth
barkcli list # See updated board