summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* diff:add option to ignore blank line changesyuuri2021-05-011-0/+1
|
* Update .gitignoreLaurence McGlashan2021-01-311-2/+2
| | | Only exclude tags files/folders and build folders at the repository root.
* gitignore: clean up patterns from old timesPatrick Steinhardt2020-03-301-30/+0
| | | | | | The gitignore file currently has a lot of patterns for files that we shouldn't write anymore since we have migrated to CMake, as everybody is expected to do out-of-source builds anyway. Let's remove them.
* Ignore VS2017 specific files and foldersSven Strickroth2019-07-121-0/+2
| | | | Signed-off-by: Sven Strickroth <email@cs-ware.de>
* fuzzers: add build support and instructionslhchavez2018-08-031-0/+2
| | | | | | This change adds support for building a fuzz target for exercising the packfile parser, as well as documentation. It also runs the fuzzers in Travis to avoid regressions.
* gitignore: ignore vim swapfilesEdward Thomson2015-03-301-0/+1
|
* Update files that reference tests-clarBen Straub2013-11-141-3/+3
|
* Added libssh2 cmake moduleBrad Morgan2013-05-071-1/+1
|
* Ignore build-amigaSebastian Bauer2013-01-101-0/+1
|
* Ignore clar.suite.rulenulltoken2013-01-041-0/+1
|
* Cleanup Clar to make it SIMPLERVicent Marti2013-01-021-4/+3
|
* ignore mkmf.logYossef Mendelssohn2012-12-111-0/+1
| | | | no build artifacts no parents
* Ignore tags fileBen Straub2012-08-301-0/+1
|
* Ingore clar_main.c.ruleAdam Roben2012-06-071-0/+1
|
* gitignore: Add `clar` dataclay-renameVicent Martí2012-01-251-2/+2
|
* cmake: generate clay mainClemens Buchacher2011-12-291-0/+2
| | | | | | The clay test suite files clay.h and clay_main.c are generated by the clay python script. Teach CMake about this dependency and remove the generated files from the repository.
* filebuf: add GIT_FILEBUF_INIT and protect multiple opens and cleanupsRussell Belfer2011-11-221-0/+1
| | | | | | | | Update all stack allocations of git_filebuf to use GIT_FILEBUF_INIT and make git_filebuf_open and git_filebuf_cleanup safe to be called multiple times on the same buffer. Signed-off-by: Vicent Marti <tanoku@gmail.com>
* include version information in git2.dll on WindowsSven Strickroth2011-10-091-0/+1
| | | | Signed-off-by: Sven Strickroth <email@cs-ware.de>
* Ignore CMake files and generated Visual Studio filesSebastian Schuberth2011-05-181-1/+4
|
* Fix mixed line endings in .gitignoreSebastian Schuberth2011-05-181-6/+5
|
* fix cast in tag.hTim Clem2011-02-141-1/+2
| | | | | git_tag_lookup() and git_tag_new() changed to cast GIT_OBJ_TAG to git_otype in order to compile lib in xcode
* Fixed .gitignore typo.nulltoken2010-12-041-1/+1
|
* Added some patterns to .gitignore file to filter out some Visual Studio ↵nulltoken2010-12-041-0/+7
| | | | specifics.
* add waf artifacts to .gitignoreScott Chacon2010-11-241-0/+4
|
* Makefile: Add support for custom build options in config.mak fileRamsay Jones2010-02-281-0/+1
| | | | Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
* Add test-suite coverage testing using gcovRamsay Jones2009-10-131-0/+3
| | | | | | | | | | | | | | | Add a new "coverage" Makefile target that re-builds the library and tests using the gcc compiler/linker flags required by gcov, runs the test suite to capture the runtime data, then compiles a coverage report. The report, which is saved in a file named "untested", consists of a list of untested files, followed by a list of untested functions. More detailed execution statistics are given in the gcov log files which are saved in the top-level directory (named like src#hash.c.gcov). Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
* Add pkg-config support.Steve Frécinaux2008-12-301-0/+1
| | | | | | | | The libgit2.pc is generated on make install and installed, to allow using the lib through the pkg-config helper. Signed-off-by: Steve Frécinaux <code@istique.net> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
* Remove references to src/git/config.hShawn O. Pearce2008-12-181-1/+0
| | | | | | It was removed in ec250c6e18e56d12714f9010e1b15e5feec5f473. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
* Run tests in their own subdirectoryShawn O. Pearce2008-12-181-0/+1
| | | | | | | | | This way tests can run in parallel without stepping on each other's temporary work files. If a test passes the directory is removed completely; if a test fails only empty directories are removed. This permits inspection of the failed test's left behind state. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
* Move public headers to src/gitAndreas Ericsson2008-11-181-1/+1
| | | | | | | | | | | It's arguably smoother to keep them close to the source, as that's where one's working when modifying them. More importantly, though, is the ability to use private headers in the src/ dir that simply include "git/$samename.h" to get to the public API at the same time. Signed-off-by: Andreas Ericsson <ae@op5.se> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
* Create a basic test suite for the library and test oid functionsShawn O. Pearce2008-11-011-0/+1
| | | | | | | | | This is a horribly simple test suite that makes it fairly easy to put together some basic function level unit tests on the library. Its patterned somewhat after the test suite in git.git, but also after the "Check" test library. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
* Create a micro abstraction around the POSIX file APIsShawn O. Pearce2008-11-011-0/+1
| | | | | | | | This way we can start to write IO code to read and write files in the Git object database, but provide a hook to inject native Win32 APIs instead so libgit2 can be ported to run natively on that platform. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
* Initial draft of libgit2Shawn O. Pearce2008-10-311-0/+3
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>