File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ fn get_current_branch(
132
132
133
133
/// Tries to find the default repo to fetch from based on configuration.
134
134
///
135
- /// > branch.<name>.remote
135
+ /// > ` branch.<name>.remote`
136
136
/// >
137
137
/// > When on branch `<name>`, it tells `git fetch` and `git push` which remote to fetch from or
138
138
/// > push to. [...] If no remote is configured, or if you are not on any branch and there is more
@@ -173,12 +173,12 @@ pub(crate) fn get_default_remote_for_fetch_in_repo(
173
173
174
174
/// Tries to find the default repo to push to based on configuration.
175
175
///
176
- /// > remote.pushDefault
176
+ /// > ` remote.pushDefault`
177
177
/// >
178
178
/// > The remote to push to by default. Overrides `branch.<name>.remote` for all branches, and is
179
179
/// > overridden by `branch.<name>.pushRemote` for specific branches.
180
180
///
181
- /// > branch.<name>.remote
181
+ /// > ` branch.<name>.remote`
182
182
/// >
183
183
/// > When on branch `<name>`, it tells `git fetch` and `git push` which remote to fetch from or
184
184
/// > push to. The remote to push to may be overridden with `remote.pushDefault` (for all
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ pub struct SSHSign {
281
281
}
282
282
283
283
impl SSHSign {
284
- /// Create new [ `SSHDiskKeySign`] for sign.
284
+ /// Create new `SSHDiskKeySign` for sign.
285
285
pub fn new ( mut key : PathBuf ) -> Result < Self , SignBuilderError > {
286
286
key. set_extension ( "" ) ;
287
287
if key. is_file ( ) {
You can’t perform that action at this time.
0 commit comments