summaryrefslogtreecommitdiff
path: root/tests/resources/status
Commit message (Collapse)AuthorAgeFilesLines
* Rename tests-clar to testsBen Straub2013-11-1450-0/+50
|
* Moved testing resources to clar, and removed old tests directory.Ben Straub2012-03-3149-49/+0
| | | | Removed the BUILD_CLAR CMake flag, and updated the readme.
* Clean up diff implementation for reviewRussell Belfer2012-03-021-0/+0
| | | | | | | This fixes several bugs, updates tests and docs, eliminates the FILE* assumption in favor of printing callbacks for the diff patch formatter helpers, and adds a "diff" example function that can perform a diff from the command line.
* Initial implementation of gitignore supportRussell Belfer2012-01-112-0/+3
| | | | | | | | Adds support for .gitignore files to git_status_foreach() and git_status_file(). This includes refactoring the gitattributes code to share logic where possible. The GIT_STATUS_IGNORED flag will now be passed in for files that are ignored (provided they are not already in the index or the head of repo).
* status: Add a file in the test repository to cover the correct sorting of ↵nulltoken2011-10-2910-3/+9
| | | | | | entries when the working folder is being read In this case, "subdir.txt" should be listed before the "subdir" directory.
* status: add subdir to test repoJason Penny2011-07-0915-2/+9
|
* status: new test repoJason Penny2011-07-0935-1/+33
|
* status: get blob object id of file on diskJason Penny2011-07-091-0/+1
Add git_status_hashfile() to get blob's object id for a file without adding it to the object database or needing a repository at all. This functionality is similar to `git hash-object` without '-w'.