Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ create_worktree() {
log_step "Branch '$branch_name' exists on remote"

# Create tracking branch first for explicit upstream configuration
if git branch --track "$branch_name" "origin/$branch_name" 2>/dev/null; then
if git branch --track "$branch_name" "origin/$branch_name" >/dev/null 2>&1; then
log_info "Created local branch tracking origin/$branch_name"
fi

Expand Down