diff options
| author | Max Audron <audron@cocaine.farm> | 2024-09-04 08:54:02 +0200 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2024-09-04 08:54:02 +0200 |
| commit | b91cf7fe0ba5472d197f65ecc307c5e7961b78b1 (patch) | |
| tree | c337ced6a2cc37e15d08b2d2c4a5c1819a2da50b /src/repo/git/ffmerge.rs | |
| parent | refactor tests (diff) | |
i do not know what i did anymore
Diffstat (limited to 'src/repo/git/ffmerge.rs')
| -rw-r--r-- | src/repo/git/ffmerge.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/repo/git/ffmerge.rs b/src/repo/git/ffmerge.rs new file mode 100644 index 0000000..382718b --- /dev/null +++ b/src/repo/git/ffmerge.rs @@ -0,0 +1,17 @@ +use super::{Repo, RepoError}; + +use anyhow::Context; +use gix::{ + clone::checkout::main_worktree::ProgressId, interrupt::IS_INTERRUPTED, progress, remote, Id, + Progress, +}; + +use gix_index::{File, State}; +use tracing::debug; + +impl Repo { + pub fn ffmerge(&self, a: Id, b: Id) -> Result<(), RepoError> { + + Ok(()) + } +} |
