.NET and Mono open source bindings for libgit2, a native Git library
0
votes
0answers
53 views
+50
What details difference between server side and client of GIT smart HTTP protocol
I hope someone will have answered the details difference between server side and client side of GIT smart HTTP protocol.
Best way is provide some references book & code for advance.
Some ...
3
votes
1answer
59 views
Equivalent to git difftool -y with libgit2sharp?
I am planning to replace the usage of git.exe from windows path by libgit2sharp for my plugin GitDiffMargin, A Visual Studio 2012 extension to display Git Diff on the margin of the current file. - ...
0
votes
1answer
37 views
Programmatically delete directory of cloned repository
I am using LibGit2Sharp to clone a remote repository into the windows temp folder. After my script has completed, I want to clean up. However, I always get the following error:
SystemError: Access ...
0
votes
0answers
45 views
LibGit2Sharp Fetch On a Cloned Repository fails
I have a local repository cloned from a remote repo.
I do a Fetch and it throws the below exception:
An error was raised by libgit2. Category = Reference (Error). Target
OID for the reference ...
3
votes
1answer
40 views
Equivalent to git diff --unified=0 with libgit2sharp?
I am planning to replace the usage of git.exe from windows path by libgit2sharp for my plugin GitDiffMargin, A Visual Studio 2012 extension to display Git Diff on the margin of the current file. - ...
0
votes
1answer
44 views
How to get a named branch?
I am using LibGit2Sharp and would like to get the latest commit of a specific branch, but, due to lacking documentation or my own fault I cannot find out how to achieve this.
Therefore, what's the ...
2
votes
1answer
48 views
Best way to do parallel stages?
I want to stage files in parallel and commit into different branches concurrently.
There will be multiple access at the same time. The repo.Index.Stage/repo.Commit API works on the same current ...
2
votes
1answer
77 views
Since Repository Merge is not implemented yet, is there any alternative?
There's a project in our company that features a complex file sync scenario and naturally git came up as a solution. As it is a .net project, libgit2sharp was exactly the API we were looking for.
As ...
0
votes
2answers
84 views
Proper way to stage files, and commit
When I try to do the following, i simply end up generating empty commits; that is, it creates a commit with nothing changed in it.
string filename = "path/to/file";
repo.Index.Stage(filename);
...
0
votes
1answer
29 views
Do an export with libgit2sharp
I'm using libgit2sharp in a .net application. I would like to fetch a directory from github. I can do this now by cloning the entire directory using Repository.Clone. But it takes a long time, and I'm ...
0
votes
2answers
107 views
How to push to a local remote?
I'm having a hard time pushing my commits to a remote repository with libgit2sharp. Using the git bash it works fine.
The remote is addressed via UNC like "//computer_name/remote.git". So it's a ...
0
votes
1answer
62 views
LibGit2Sharp fails to find git2.dll
I have built a tiny wpf app that manages a website I am working on. The key feature of this app is that it allows me to checkout different branches of a theme repository. This works perfectly in ...
1
vote
1answer
35 views
How to find out if the fetched remote reference has newer version of a file?
I have changes to a file (RemoteTest.txt) pushed from HostA to the remote. On HostB I have the status without that last push.
Now when I go to the bash with "git diff" I see the changes.
$ git diff ...
1
vote
1answer
134 views
Does libgit2 support SSH-Transport-Protocol?
Is it possible to clone a repository via ssh using ssh-keys?
2
votes
2answers
134 views
How do I build a version tree for a Git repository using LibGit2(Sharp)
Some background:
I'm looking at the possibility of using Git as a data storage layer. Basically I need to keep all versions of some XML files which describe application state. The users needs a "Time ...
0
votes
1answer
53 views
Why do libgit2 methods using kernel32.dll's GetProcAddress always return 0?
I have the need to manually handle the loading / unloading of the actual git2.dll, instead of using [DllImport("git2")] in C#. I seem to have issues with creating an IntPtr for reference to the ...
0
votes
1answer
166 views
What is the LibGit2Sharp equivalent of 'git pull'?
I'm trying to merge changes from the remote branch into the local repository, however I've been unable to get this to work properly -- likely misunderstanding of the implementation. Fetching seems to ...
1
vote
1answer
157 views
libgit2sharp Fetch Failing
I am using libgit2sharp to on a proof of concept to automate fetching, changing, commiting some files, and pushing to a remote origin.
I know that push is still not finished yet, but fetch is in ...
1
vote
1answer
34 views
How can one supply credentials during a Fetch call?
We're not talking about SSH since it's not yet implemented, but how can I supply credentials for the repository before I perform a fetch via HTTP/HTTPS? There doesn't seem to be a parameter for a ...
0
votes
1answer
49 views
Needing a little help performing operations on remote repository
I've been tinkering around, and reading through what little Wiki information that I could find, and looked through tests that I thought may be relevant, however I'm having problems coming up with a ...
2
votes
1answer
105 views
LibGit2Sharp log remote
Is there any way to list commits that have been fetched, but not merged using LibGit2Sharp?
For example I can run the following git command:
C:\Users\Tom\SourceLog>git log origin
commit ...
-1
votes
2answers
69 views
Commit tree contains full working tree
I tried to retrieve last commit where the specific file was submitted (kind of "git log foo.cc").
Get all the commits and go through them.
In the commit tree looking for the file.
The problem is that ...
1
vote
1answer
89 views
How to list files in remote repository, without cloning?
Is there a way to use LibGit2Sharp to get a list of the files in a remote repository, but without cloning the repository locally?
I'd like to list the files, but also get the content of the files.
...
3
votes
1answer
61 views
Build libgit2sharp for .net 2.0
Did anyone succeed in building libgit2sharp using .NET 2.0?
I need to make the library work under VS 2005 and have many 3.5 features to re-write.
Does anyone know of a better way to work under VS 2005 ...
0
votes
0answers
42 views
Doing a shallow Clone From a remote with Ngit
I am having some really big trouble figuring out the shallow clone functionality of NGit.
I am looking to:
Create a new empty git repo
add a remote from a URL
pull down a shallow clone with a depth ...
1
vote
1answer
272 views
Does LibGit2Sharp support cloning a repository from the local file system?
I am trying to clone a git repository from the local file system:
using System;
using LibGit2Sharp;
class Program
{
static void Main()
{
var sourceUrl = ...
4
votes
2answers
207 views
What is the LibGit2Sharp equivalent of git log path?
How do I get a list of commits which contain a particular file, ie the equivalent of git log path for LibGit2Sharp.
Has it not been implemented or is there a way that I'm missing?
Thanks for any ...
1
vote
1answer
127 views
How to detect pending changes in libgit2sharp?
In libgit2sharp https://github.com/libgit2/libgit2sharp/ how do you check for pending/uncommitted changes?
1
vote
1answer
104 views
How can I use libgit2sharp to change the working directory?
I've been trying to change the working directory using libgit2sharp and so far I haven't worked out how to do it. Checkout doesn't appear to do it, Reset is available but ResetOptions.Hard is not. Has ...
1
vote
1answer
81 views
How to get the current/active branch with LibGit2Sharp?
So using LibGit2Sharp https://github.com/libgit2/libgit2sharp you can walk through the branches like this
using (var repo = new Repository(@"path to .git"))
{
foreach (var branch in ...
1
vote
2answers
469 views
Clone and Push using libgit2sharp
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 ...
2
votes
1answer
163 views
Problems loading git2.dll?
Im trying to use the libgit2sharp library. My only code is
Repository repository = new Repository(@"C:\Path\To\Repo");
and when i run it i get an error saying Unable to load DLL 'git2': The ...
1
vote
1answer
74 views
Files marked as 'Deleted' are reported as 'Missing' in LibGit2Sharp
When viewing my repository status with Git Bash I can see many files that are marked as 'Deleted'. LibGit2Sharp RepositoryStatus reports these files as "Missing". The RepositoryStatus object also has ...
1
vote
1answer
86 views
Using parent references
I'm using libgit2sharp and I'd like to get a Commit object representing something like HEAD~10. I tried repo.Lookup("HEAD~10"), but that doesn't work:
LibGit2Sharp.LibGit2Exception: An error was ...
3
votes
1answer
353 views
How to partially stage a file with LibGit2Sharp?
I have this file committed:
foo.txt
line 1
line 2
line 3
Now I modify it to become:
line 1
line 1.5
line 2
line 2.5
line 3
and I run git add . && git diff --cached foo.txt and this is ...
1
vote
2answers
235 views
Iterating through diff changes in LibGit2Sharp
What could be the best (as in performant, simple) way to iterate over TreeChanges in LibGit2Sharp?
If I access the .Patch property, I retrieve the full text of the changes. This is not quite enough ...
1
vote
1answer
92 views
Comparing a file on disk and its corresponding version on Head?
How would I go about taking a diff between a file on a disk and its corresponding version on the HEAD?
I've tried:
TreeChanges changes = repo.Diff.Compare(repo.Head.Tip.Tree, DiffTarget.Index);
...
1
vote
2answers
151 views
How to revert a commit?
I tried looking into every object in LibGit2Sharp, but I was unable to find a way to revert a particular commit. Is it possible to revert a commit in LibGit2Sharp or is it yet undone?
I would have ...
2
votes
1answer
39 views
How to exclude stashes while querying refs?
I'm trying to query for commits:
repo.Commits.QueryBy(new LibGit2Sharp.Filter { Since = repo.Refs }).Take(100)
This is otherwise ok, but it also returns stashes. How can I exclude stashes? I know ...
3
votes
1answer
173 views
What is the advantage of committing to the Git object database?
In the discussion amongst the comments in this libgit2sharp issue it was highlighted I can create commits against the object database?
What is committing to the object database?
Why is advantageous ...
1
vote
2answers
127 views
How to achieve `git rm --cached` and `git rm -f`with LibGit2Sharp?
1) I tried using repo.Index.Remove(item.Filename);, but it's giving me:
Additional information: Unable to remove file 'file.txt'. Its current
status is 'Modified'.
I need to find a way to do ...
3
votes
1answer
85 views
Limiting the number of commits getting queried in LibGit2Sharp?
I'm doing a loop:
using LibGit2Sharp;
var filter = new Filter { Since = repo.Refs };
IEnumerable<Commit> commits = repo.Commits.QueryBy(filter);
foreach (Commit commit in commits)
{
//Do ...
2
votes
1answer
134 views
How to find all commits having a particular parent?
How may I find all commits in a repository that have a specific parent?
For example, if I have a commit A, I would like to find all other commits that share the parent with A. What would be the most ...
2
votes
1answer
196 views
Looping through every commit in Git repository with LibGit2Sharp?
I tried looping through new LibGit2Sharp.Repository(path).Commits, but it seems it only goes through the commits in the master (or I guess wherever the HEAD points to?).
How would I loop through ...
2
votes
1answer
107 views
How to get details about Stashes in LibGit2Sharp?
Is there some way to get the list of stashes along with their names (and perhaps other info) and then see what files changes and the diffs?
I am using LibGit2Sharp
3
votes
2answers
864 views
Is any body making a windows replacement to msysgit with libgit2,libgit2sharp, Ngit?
Hi I like Git but it seems sharing windows projects with people and friends is not fun because gitextensions tortoisegit are ugly to use out of the box compared to tortoisehg or tortoisesvn (not that ...
0
votes
1answer
154 views
Is it possible to add parts of a file to Git index using libgit2?
I am using libgit2, actually libgit2sharp, is there a way to add parts of a file similar to what add -p in CLI?
I don't find anything from the documentation: ...
1
vote
3answers
351 views
Find out the branch a commit belongs to in LibGit2Sharp?
I am looping through commits in LibGit2Sharp:
Repository repo = new Repository("Z:/www/gg");
foreach (LibGit2Sharp.Commit commit in repo.Commits)
{
...
}
I can retrieve properties like Author ...
1
vote
1answer
436 views
Get changes between a commit and its parent with libgit2sharp
I am working with libgit2sharp (a C# wrapper for libgit2) and have been running into issues because it doesnt have a lot of the functionality I am hoping for (hopefully I can contribute to it soon; ...
1
vote
2answers
133 views
How can I add a TreeEntry to a Commit's Tree collection?
If I have a bare repository and I want to add, edit, and delete files from it how can I do this using LibGit2Sharp?
I see that each Commit has a Tree object that contains TreeEntry objects. Is it ...
