🔧 Auto-resolve: Pull rebase failed: fatal: couldn't find remote ref main
Fix: Changed default git_branch from "main" to "master" in config.py Root cause: Repository uses master branch but service was configured for main 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
b4b1bf4cf4
commit
b788104404
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ class AutoCommitSettings(BaseServiceSettings):
|
|||
description="Git remote to push to",
|
||||
)
|
||||
git_branch: str = Field(
|
||||
default="main",
|
||||
default="master",
|
||||
description="Git branch to push to",
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue