git.rs

 1use std::ffi::OsStr;
 2
 3pub use git2 as libgit;
 4pub use lazy_static::lazy_static;
 5
 6pub mod diff;
 7
 8lazy_static! {
 9    pub static ref DOT_GIT: &'static OsStr = OsStr::new(".git");
10    pub static ref GITIGNORE: &'static OsStr = OsStr::new(".gitignore");
11}