// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! Git workarea
//!
//! This crate implements a workarea given a bare git repository. A workarea is like a worktree
//! except that its on-disk representation is minimal so that operations are not constrained by
//! disk speed.
pub use CommitId;
pub use GitContext;
pub use GitError;
pub use Identity;
pub use MergeStatus;
pub use Conflict;
pub use GitWorkArea;
pub use MergeCommand;
pub use MergeResult;
pub use SubmoduleConfig;
pub use WorkAreaError;