This commit is contained in:
2025-01-23 14:09:20 +01:00
parent f2b9b73528
commit 6637756088
16 changed files with 233 additions and 214 deletions

View File

@@ -45,7 +45,7 @@ repo.branch_create('feature-branch')!
repo.branch_switch('feature-branch')!
// Check status and commit changes
if repo.has_changes() {
if repo.has_changes {
repo.commit('feat: Add new feature')!
repo.push()!
}
@@ -114,7 +114,7 @@ if repo.need_checkout() {
```v
// Check for changes
if repo.has_changes() {
if repo.has_changes {
// Handle changes
}