Skip to content

Commit

Permalink
keep track of several branch related keys (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Nov 1, 2022
1 parent 7bd5263 commit 443a75a
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/plumbing/progress.rs
Expand Up @@ -201,6 +201,45 @@ static GIT_CONFIG: &[Record] = &[
config: "submodule.recurse",
usage: Planned {note: Some("very relevant for doing the right thing during checkouts")},
},
Record {
config: "branch.autoSetupRebase",
usage: Planned {
note: Some("for when we allow setting up upstream branches")
},
},
Record {
config: "branch.<name>.remote",
usage: InModule {
name: "reference::remote",
deviation: None
},
},
Record {
config: "branch.<name>.pushRemote",
usage: InModule {
name: "reference::remote",
deviation: None
},
},
Record {
config: "branch.<name>.merge",
usage: InModule {
name: "repository::config",
deviation: None
},
},
Record {
config: "branch.<name>.rebase",
usage: Planned {
note: Some("for when we can merge, rebase should be supported")
},
},
Record {
config: "branch.<name>.description",
usage: NotPlanned {
reason: "no plan to implement format-patch or request-pull summary"
},
},
Record {
config: "core.bare",
usage: InModule {
Expand Down

0 comments on commit 443a75a

Please sign in to comment.