use crateWrapCommand;
use crategit;
pub use *;
pub const GIT_COMMAND: &str = "merge";
/// Join two or more development histories together.
/// Incorporates changes from the named commits (since the time their histories diverged from the current branch) into the current branch.
/// This command is used by git pull to incorporate changes from another repository and can be used by hand to merge changes from one branch into another.
/// [Git doc](https://git-scm.com/docs/git-merge)