1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use crate::bstr::BStr;
use crate::{remote, Remote};
use std::convert::TryInto;
impl Remote<'_> {
pub fn push_url<Url, E>(self, url: Url) -> Result<Self, remote::init::Error>
where
Url: TryInto<git_url::Url, Error = E>,
git_url::parse::Error: From<E>,
{
self.push_url_inner(url, true)
}
pub fn push_url_without_url_rewrite<Url, E>(self, url: Url) -> Result<Self, remote::init::Error>
where
Url: TryInto<git_url::Url, Error = E>,
git_url::parse::Error: From<E>,
{
self.push_url_inner(url, false)
}
fn push_url_inner<Url, E>(mut self, push_url: Url, should_rewrite_urls: bool) -> Result<Self, remote::init::Error>
where
Url: TryInto<git_url::Url, Error = E>,
git_url::parse::Error: From<E>,
{
let push_url = push_url
.try_into()
.map_err(|err| remote::init::Error::Url(err.into()))?;
self.push_url = push_url.into();
let (_, push_url_alias) = should_rewrite_urls
.then(|| remote::init::rewrite_urls(&self.repo.config, None, self.push_url.as_ref()))
.unwrap_or(Ok((None, None)))?;
self.push_url_alias = push_url_alias;
Ok(self)
}
pub fn with_refspec<'a>(
mut self,
spec: impl Into<&'a BStr>,
direction: remote::Direction,
) -> Result<Self, git_refspec::parse::Error> {
use remote::Direction::*;
let spec = git_refspec::parse(
spec.into(),
match direction {
Push => git_refspec::parse::Operation::Push,
Fetch => git_refspec::parse::Operation::Fetch,
},
)?
.to_owned();
let specs = match direction {
Push => &mut self.push_specs,
Fetch => &mut self.fetch_specs,
};
if !specs.contains(&spec) {
specs.push(spec);
}
Ok(self)
}
}