Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git2rs equivalent to "git push --mirror remote" #1105

Open
akxhw1996 opened this issue Dec 3, 2024 · 0 comments
Open

git2rs equivalent to "git push --mirror remote" #1105

akxhw1996 opened this issue Dec 3, 2024 · 0 comments

Comments

@akxhw1996
Copy link

akxhw1996 commented Dec 3, 2024

Hi, I am making a tool to mirror my repo from one git hosting platform to github. What I want to do is using git2rs to achieve:

  1. git clone --bare https://platfrom.repo.git
  2. cd to the cloned repo
  3. git push --mirror https://github.repo.git

Step 1 and 2 are successful, but I am not able to implement step 3. Can anyone tell me what is the git2rs equivalent to step 3?

I tried the following appoach:

  • query all refs of local repo and push to remote, the issue is that the deleted tags/branches are not pushed
  • do not specify refs, set the config for remote as mirror, nothing is pushed after the program runs
pub fn push_mirror(repo_path: &PathBuf, remote_url: &str) -> Result<(), git2::Error> {
    let repo = Repository::open(repo_path)?;

    if repo.find_remote("mirror").is_ok() {
        repo.remote_delete("mirror")?;
    }

    let mut remote = repo.remote_with_fetch("mirror", remote_url, "+refs/*:refs/*")?;

    let mut config = repo.config()?;
    config.set_bool("remote.mirror.mirror", true)?;

    let mut push_opts = PushOptions::new();
    remote.push(&[] as &[&str], Some(&mut push_opts))?;

    Ok(())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant