We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 250b2c0 commit f677b95Copy full SHA for f677b95
scripts/utils.ts
@@ -85,7 +85,7 @@ export async function pushBranch(): Promise<void> {
85
}
86
87
export async function pullBranch(): Promise<void> {
88
- const proc = Bun.spawn(["git", "pull"], {
+ const proc = Bun.spawn(["git", "pull", "--rebase"], {
89
stdout: "pipe",
90
stderr: "pipe",
91
});
@@ -95,4 +95,4 @@ export async function pullBranch(): Promise<void> {
95
const error = await new Response(proc.stderr).text();
96
throw new Error(`Failed to pull: ${error}`);
97
98
-}
+}
0 commit comments