Can anyone tell me how to Clone a repo and Push or publish the committed changes?
Currently i am able to modify the clone repo and able to commit my changes, but i dont fine an api to push it. also to clone the repo initially.
Clone and Push features are currently under development in libgit2. Below some PRs related to this subject.
Once the C code is reviewed, merged and tested, a new version of LibGit2Sharp will be released exposing those features.
Considering the current progress, Clone might land before Push and thus usable from LibGit2Sharp sooner.
if its not available,What is the alternative to do in using c#?
You could defer this to git.exe by invoking it through the Process type. This would require to deploy msysgit on the computer running the .Net code, though.
Update
Both Clone and Push are now available in LibGit2Sharp.
- This test shows how do to a Clone and a Push over against a local repository
- Other hints regarding handling of credentials and callbacks can be seen in the Remote and Clone test suites.