Ejemplo n.º 1
0
 /// <summary>
 /// Checkout the local repo to a given state.
 /// </summary>
 /// <param name="commit">Tag, branch, or commit to checkout</param>
 public void Checkout(string commit, bool force = false)
 {
     _gitClient.Checkout(_repo, commit, force);
 }