Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
2
Answers
Cannot find a library to deal with git
Terry Howard
12y
1.8k
1
Reply
I would like to create an app to communicate with github in C# code.
After searching some time, I could not find a library to support this.
What I want to do is something like this fake code:
using GitLibrary;
Repository myRepository = new(Repository);
myRepository.URI = "
https://github.com/somerepo/reporoot
";
myRepository.LoginName = "myLoginName";
myRepository.LoginPassword = "myPassword";
myRepository.Open();
myRepository.Pull("folderA\folderB\fileXYZ");
....
some code to edit file fileXYZ
....
PushResults results = PushFileChanges("fileName");
....
some code to handle errors.
....
myRepository.Close();
Does anybody know if there exists a library to accomplish this (more or less)?
Oh, I recently moved from Visual Studio to Sharpdevelop, so a library that only works with VS is no solution.
Thanks for any suggestions.
Post
Reset
Cancel
Answers (
2
)
Next Recommended Forum
[help] a sample code or source code project about telnet client to reference
how to stored procedure sql server 2008 and c#