Git Utilitaries

This library coded in Kotlin provides some useful function when trying to mine a git repository. First, it allows to clone or pull a remote repository, then it offers the following methods:

this library work on local repository but also offer the possibility to clone a remote repository:

   // for already existing git repo  
     val git = GitUtilitary("pathto .git folder")
   // to clone the repo
     val git = GitUtilitary("remote repo adress","path to folder")