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
|
use std::path::Path;
pub fn mirror<P: AsRef<Path>>(
url: &str,
path: P,
) -> Result<(), Box<dyn std::error::Error>> {
let repo = git2::Repository::init_bare(path)?;
let remote_name = "origin";
let mut remote = repo.remote_with_fetch(
remote_name,
url,
"+refs/*:refs/*",
)?;
let mut config = repo.config()?;
config.set_bool(
&format!("remote.{}.mirror", remote_name),
true,
)?;
let refspecs: [&str; 0] = [];
remote.fetch(&refspecs, None, None)?;
Ok(())
}
pub fn update<P: AsRef<Path>>(
path: P,
) -> Result<(), Box<dyn std::error::Error>> {
let repo = git2::Repository::open_bare(path)?;
for remote_opt in &repo.remotes()? {
if let Some(remote_name) = remote_opt {
let mut remote = repo.find_remote(remote_name)?;
let mut fetch_options = git2::FetchOptions::new();
fetch_options
.prune(git2::FetchPrune::On)
.download_tags(git2::AutotagOption::All);
let refspecs: [&str; 0] = [];
remote.fetch(&refspecs, Some(&mut fetch_options), None)?;
}
}
Ok(())
}
|