File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ use crate::repository::identity;
2
2
use crate :: { bstr:: BString , permission, Repository } ;
3
3
use git_features:: threading:: OnceCell ;
4
4
5
+ pub use git_config:: * ;
6
+
5
7
pub ( crate ) mod cache;
6
8
mod snapshot;
7
9
@@ -18,7 +20,9 @@ pub(crate) mod section {
18
20
}
19
21
}
20
22
23
+ /// The error returned when failing to initialize the repository configuration.
21
24
#[ derive( Debug , thiserror:: Error ) ]
25
+ #[ allow( missing_docs) ]
22
26
pub enum Error {
23
27
#[ error( "Could not read configuration file" ) ]
24
28
Io ( #[ from] std:: io:: Error ) ,
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ pub mod create;
297
297
pub mod open;
298
298
299
299
///
300
- mod config;
300
+ pub mod config;
301
301
302
302
///
303
303
pub mod mailmap {
You can’t perform that action at this time.
0 commit comments