Skip to content

Commit 443a75a

Browse files
committed
keep track of several branch related keys (#450)
1 parent 7bd5263 commit 443a75a

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

Diff for: src/plumbing/progress.rs

+39
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,45 @@ static GIT_CONFIG: &[Record] = &[
201201
config: "submodule.recurse",
202202
usage: Planned {note: Some("very relevant for doing the right thing during checkouts")},
203203
},
204+
Record {
205+
config: "branch.autoSetupRebase",
206+
usage: Planned {
207+
note: Some("for when we allow setting up upstream branches")
208+
},
209+
},
210+
Record {
211+
config: "branch.<name>.remote",
212+
usage: InModule {
213+
name: "reference::remote",
214+
deviation: None
215+
},
216+
},
217+
Record {
218+
config: "branch.<name>.pushRemote",
219+
usage: InModule {
220+
name: "reference::remote",
221+
deviation: None
222+
},
223+
},
224+
Record {
225+
config: "branch.<name>.merge",
226+
usage: InModule {
227+
name: "repository::config",
228+
deviation: None
229+
},
230+
},
231+
Record {
232+
config: "branch.<name>.rebase",
233+
usage: Planned {
234+
note: Some("for when we can merge, rebase should be supported")
235+
},
236+
},
237+
Record {
238+
config: "branch.<name>.description",
239+
usage: NotPlanned {
240+
reason: "no plan to implement format-patch or request-pull summary"
241+
},
242+
},
204243
Record {
205244
config: "core.bare",
206245
usage: InModule {

0 commit comments

Comments
 (0)