- 17 May, 2012 2 commits
-
-
Fix status for files under ignored dirs
Vicent Martí committed -
There was a bug where tracked files inside directories that were inside ignored directories where not being found by status. To make that a little clearer, if you have a .gitignore with: ignore/ And then have the following files: ignore/dir/tracked <-- actually a tracked file ignore/dir/untracked <-- should be ignored Then we would show the tracked file as being removed (because when we got the to contained item "dir/" inside the ignored directory, we decided it was safe to skip -- bzzt, wrong!). This update is much more careful about checking that we are not skipping over any prefix of a tracked item, regardless of whether it is ignored or not. As documented in diff.c, this commit does create behavior that still differs from core git with regards to the handling of untracked files contained inside ignored directories. With libgit2, those files will just not show up in status or diff. With core git, those files don't show up in status or diff either *unless* they are explicitly ignored by a .gitignore pattern in which case they show up as ignored files. Needless to say, this is a local behavior difference only, so it should not be important and (to me) the libgit2 behavior seems more consistent.
Russell Belfer committed
-
- 16 May, 2012 8 commits
-
-
notes: make git_note_foreach() callback signature easier to cope with from a binding perspective
Vicent Martí committed -
nulltoken committed
-
Vicent Martí committed
-
Vicent Martí committed
-
These are deprecated and replaced with the diffing code in git2/diff.h
Vicent Martí committed -
really reset walker with git_revwalk_reset
Vicent Martí committed -
Update git_status_file and add ranged iterators
Vicent Martí committed -
A few indexer consistency checks
Vicent Martí committed
-
- 15 May, 2012 6 commits
-
-
This function fills in a git_buf with the common prefix of an array of strings, but let's make that a little more clear.
Russell Belfer committed -
Error out in finalize if there is junk after the packfile hash or we couldn't process all the objects.
Carlos Martín Nieto committed -
Russell Belfer committed
-
The goal of this work is to rewrite git_status_file to use the same underlying code as git_status_foreach. This is done in 3 phases: 1. Extend iterators to allow ranged iteration with start and end prefixes for the range of file names to be covered. 2. Improve diff so that when there is a pathspec and there is a common non-wildcard prefix of the pathspec, it will use ranged iterators to minimize excess iteration. 3. Rewrite git_status_file to call git_status_foreach_ext with a pathspec that covers just the one file being checked. Since ranged iterators underlie the status & diff implementation, this is actually fairly efficient. The workdir iterator does end up loading the contents of all the directories down to the single file, which should ideally be avoided, but it is pretty good.
Russell Belfer committed -
Carlos Martín Nieto committed
-
From the description of git_revwalk_reset in revwalk.h the function should clear all pushed and hidden commits, and leave the walker in a blank state (just like at creation). Apparently everything gets reseted appart of pushed commits (walk->one and walk->twos) This fix should reset the walker properly.
Nico von Geyso committed
-
- 14 May, 2012 17 commits
-
-
Fix compilation warnings
Vicent Martí committed -
nulltoken committed
-
Add git_note_foreach()
Vicent Martí committed -
This reverts commit 1093e2de.
Vicent Martí committed -
nulltoken committed
-
branch: cover with test that moving a non existing branch returns ENOTFOUND
Vicent Martí committed -
branch: make git_branch_delete() return GIT_ENOTFOUND when the branch doesn't exist
Vicent Martí committed -
See issue https://github.com/libgit2/libgit2/issues/680
Vicent Martí committed -
Building a "shared object" (DLL) in Windows includes 2 steps: - specify __declspec(dllexport) when building the library itself. MSVC will disallow itself from optimizing these symbols out and reference them in the PE's Exports-Table. Further, a static link library will be generated. This library contains the symbols which are exported via the declsepc above. The __declspec(dllexport) becomes part of the symbol-signature (like parameter types in C++ are 'mangled' into the symbol name, the export specifier is mingled with the name) - specify __declspec(dllimport) when using the library. This again mingles the declspec into the name and declares the function / variable with external linkage. cmake automatically adds -Dgit2_EXPORTS to the compiler arguments when compiling the libgit2 project. The 'git2' is the name specified via PROJECT() in CMakeLists.txt.
Sascha Cunz committed -
Add git_blob_create_fromdisk()
Vicent Martí committed -
Fix build/runtime issues on Solaris
Vicent Martí committed -
Attribute cache buster
Vicent Martí committed -
Sascha Cunz committed
-
Use -fvisibility=hidden in GCC builds
Vicent Martí committed -
mergebase: enhance test code coverage
Vicent Martí committed -
iterator: prevent git_iterator_free() from segfaulting when being passed a NULL iterator
Russell Belfer committed -
Since we now rely on it (at least under Solaris), I figured we probably want to make sure it's accurate. The new test makes sure that creating a file with a name of length FILENAME_MAX+1 fails.
Scott J. Goldman committed
-
- 13 May, 2012 6 commits
- 12 May, 2012 1 commit
-
-
Han-Wen Nienhuys committed
-