Team Setup

Set up barkcli for a team with git-based collaboration.

Step 1: Initialize in Shared Repo

One team member initializes barkcli in the shared repo.

barkcli init
git add .board
git commit -m "chore: initialize barkcli"
git push

Step 2: Team Members Pull

Other team members pull the changes.

git pull
barkcli list  # See the same board

Step 3: Work with Branches

Create 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 push

Step 4: Merge and Sync

Merge branches and sync task changes.

git checkout main
git merge feature/auth
barkcli list  # See updated board
← All Guides