Collaboration Manager

Collaboration Manager

Manage team workflows and repository access.

Setup

  1. Configure Git identity:

    git config --global user.name "Your Name"
    git config --global user.email "[email protected]"
  2. Add SSH key:

    ssh-keygen -t ed25519
    cat ~/.ssh/id_ed25519.pub
    # Add to GitHub/GitLab
  3. Clone shared repo:

    git clone [email protected]:team/repo.git

Workflow Options

Workflow
Description

Feature branch

Branch per feature, merge via PR

Trunk-based

Short-lived branches, frequent merges

Forking

Fork and PR from your fork

Last updated