File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
library/compiler-builtins/crates/josh-sync/src Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,8 @@ impl GitSync {
87
87
88
88
let prep_message = format ! (
89
89
"Update the upstream Rust version\n \n \
90
- Update the version file to the following commit:\n \n \
91
- {new_summary}\n \n \
92
- in order to prepare for merging from {upstream_repo}.
90
+ To prepare for merging from {upstream_repo}, set the version file to:\n \n \
91
+ {new_summary}\n \
93
92
",
94
93
) ;
95
94
self . run ( [
@@ -109,7 +108,7 @@ impl GitSync {
109
108
"Merge ref {upstream_head_short}{filter} from {upstream_url}\n \n \
110
109
Pull recent changes from {upstream_repo} via Josh.\n \n
111
110
Upstream ref: {new_upstream_base}\n \
112
- Filtered ref: {incoming_ref}
111
+ Filtered ref: {incoming_ref}\n \
113
112
",
114
113
upstream_head_short = & new_upstream_base[ ..12 ] ,
115
114
filter = self . josh_filter
@@ -130,7 +129,7 @@ impl GitSync {
130
129
self . run ( [
131
130
"git" ,
132
131
"merge" ,
133
- & incoming_ref ,
132
+ "FETCH_HEAD" ,
134
133
"--no-verify" ,
135
134
"--no-ff" ,
136
135
"-m" ,
You can’t perform that action at this time.
0 commit comments