Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

if its not available,What is the alternative to do in using c#?

-Jaffer

share|improve this question

2 Answers

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.
share|improve this answer

Clone is implemented now. I hope push is around the corner -- the C version looks to be implemented, but haven't been merged yet.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.