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
7 changes: 6 additions & 1 deletion src/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,12 @@ After you fix the conflicts, `git add` the changes and run `git merge --continue
// Do the actual push from the subtree git repo
println!("Pushing changes...");
run_command(
&["git", "push", &josh_url, &format!("HEAD:{branch}")],
&[
"git",
"push",
&josh_url,
&format!("HEAD:refs/heads/{branch}"),
],
self.verbose,
)?;
println!();
Expand Down
Loading