Git Product home page Git Product logo

Comments (1)

davidB avatar davidB commented on May 23, 2024

inspiration (thansk @ilaborie)

#[tracing::instrument(fields(dst = ?dst.as_ref(), url = url.as_ref(), rev = rev.as_ref()))]
#[cfg(not(feature = "git2"))]
pub fn retrieve<P, U, R>(dst: P, url: U, rev: R) -> Result<(), Error>
where
    P: AsRef<Path>,
    R: AsRef<str>,
    U: AsRef<str>,
{
    let dst = dst.as_ref();
    if dst.exists() {
        // fetch
        debug!("fetch origin");
        let _fetch_result = std::process::Command::new("git")
            .args(["fetch", "origin"])
            .status()?;

        // checkout
        debug!("checkout --force {}", rev.as_ref());
        let _checkout_result = std::process::Command::new("git")
            .args(["checkout", "--force", rev.as_ref()])
            .status()?;

        // reset
        debug!("reset --hard origin/{}", rev.as_ref());
        let remote_branch = format!("origin/{}", rev.as_ref());
        let _checkout_result = std::process::Command::new("git")
            .args(["reset", "--hard", remote_branch.as_str()])
            .status()?;
    } else {
        std::fs::create_dir_all(dst).map_err(|source| Error::CreateFolder {
            path: dst.to_path_buf(),
            source,
        })?;

        // clone
        let git_url = dst.as_os_str().to_str().unwrap();
        debug!("clone --branch {} {}", rev.as_ref(), git_url);
        let _clone_result = std::process::Command::new("git")
            .args(["clone", "--branch", rev.as_ref(), git_url])
            .status()?;

        // checkout
        debug!("checkout --force {}", rev.as_ref());
        let _checkout_result = std::process::Command::new("git")
            .args(["checkout", "--force", rev.as_ref()])
            .status()?;
    }
    Ok(())
}

from ffizer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.