You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Michael Maxwell edited this page Jan 5, 2021
·
4 revisions
Checkout a branch or paths to the working tree
Checkout to existing branch by name
Git
$ git checkout <branch>
libgit2sharp
using(varrepo=newRepository("path/to/your/repo")){varbranch=repo.Branches[branchName];if(branch==null){// repository return null object when branch not existsreturnnull;}BranchcurrentBranch=Commands.Checkout(repo,branch);}