summaryrefslogtreecommitdiff
path: root/src/fileops.c
Commit message (Expand)AuthorAgeFilesLines
* Add new move function, `gitfo_mv_force`Vicent Marti2011-03-031-1/+24
* Move the path comparison method to fileops.cVicent Marti2011-03-031-0/+19
* Fix file renaming in MinGWVicent Marti2011-02-241-4/+2
* Fix renaming of files in Win32Vicent Marti2011-02-241-0/+12
* Made path prettifying functions return GIT_EINVALIDPATH instead of GIT_ERROR.nulltoken2011-01-291-4/+4
* Fixed naming convention related issue.nulltoken2011-01-291-3/+3
* Added git_prettify_file_path().nulltoken2011-01-291-0/+27
* Optimized git_prettify_dir_path() parsing.nulltoken2011-01-291-21/+18
* Fixed a parsing issue in git_prettify_dir_path().nulltoken2011-01-291-26/+39
* Small enhancements to git_prettify_dir_path().nulltoken2011-01-201-2/+6
* Merge branch 'dir-path-prettifying' of https://github.com/nulltoken/libgit2Vicent Marti2011-01-191-0/+76
|\
| * Added git_prettify_dir_path().nulltoken2011-01-111-0/+77
* | Revised platform types to use 'best supported' size.Alex Budovski2011-01-111-3/+3
|/
* Merge branch 'repo-init' of https://github.com/nulltoken/libgit2 into nulltok...Vicent Marti2011-01-031-14/+40
|\
| * Fixed placement of pointer argument.nulltoken2010-12-261-1/+1
| * Merge branch 'master' into repo-initnulltoken2010-12-231-10/+10
| |\ | |/ |/|
| * Made is_windows_rooted_path() able to cope with awkward but valid relative pa...nulltoken2010-12-211-1/+1
| * Wrapped the detection of a Windows rooted path within a conditional compilati...nulltoken2010-12-211-3/+19
| * Made gitfo_mkdir_recurs() skip creation of the root of the path if it looks l...nulltoken2010-12-201-0/+5
| * Made gitfo_mkdir_recurs() gracefully recover when a given directory already e...nulltoken2010-12-201-1/+6
* | Remove git_errnoVicent Marti2010-12-231-10/+10
|/
* Fix issues in repository initializationVicent Marti2010-12-191-6/+23
* Added a comment reminding that the gitfo_mkdir_recurs() is far from being ful...nulltoken2010-12-171-0/+1
* Made gitfo_mkdir_recurs() more tolerant.nulltoken2010-12-171-1/+8
* Added gitfo_mkdir_recurs() placeholder.nulltoken2010-12-171-0/+5
* Fix initialization & freeing of inexistent reposVicent Marti2010-12-131-2/+7
* Small source code readability improvements.nulltoken2010-12-051-3/+3
* Fix gitfo_isdir() in Win32 systemsVicent Marti2010-11-241-1/+19
* Change git_repository initialization to use a pathVicent Marti2010-11-021-0/+7
* Add some more (macro) file operation wrappersRamsay Jones2010-04-301-1/+1
* msvc: Fix some -W4 warningsRamsay Jones2010-01-201-1/+0
* Save the git_file in the gitfo_cache when enabling cachingRamsay Jones2010-01-201-0/+1
* win32: Use an 64-bit file offset typeRamsay Jones2010-01-201-3/+9
* Improve the portability of the gitfo_cache code (to 64-bit systems)Ramsay Jones2009-06-051-1/+1
* Add the git_move_file() functionRamsay Jones2009-06-051-0/+13
* gitfo_exists: replace call to stat() with access()Ramsay Jones2009-06-051-2/+1
* win32: Add routines to abstract memory-mapped file functionsRamsay Jones2009-03-201-6/+4
* win32: Open or create files in binary modeRamsay Jones2009-03-171-2/+2
* win32: fixup some headers to improve win32 compilationRamsay Jones2009-03-171-1/+0
* Fix some (digital-mars) compiler warningsRamsay Jones2009-03-171-1/+1
* Avoid using a gcc compiler language extensionRamsay Jones2009-03-171-2/+4
* Add a simple mmap wrapper for cross-platform mmap usageShawn O. Pearce2009-01-031-0/+15
* Define gitfo_exists to determine file presenceShawn O. Pearce2008-12-311-0/+6
* Rewrite git_foreach_dirent into gitfo_direntShawn O. Pearce2008-12-311-15/+9
* Set GIT_EOSERR when the OS errno should be consultedShawn O. Pearce2008-12-301-8/+20
* Wrap malloc and friends and report out of memory as GIT_ENOMEMShawn O. Pearce2008-12-301-6/+7
* Change usages of static inline to GIT_INLINEJulio Espinoza-Sokal2008-12-301-1/+1
* Fix a bug in gitfo_read_file()Ramsay Jones2008-12-301-2/+3
* Add a file reading routine along with an io buffer typeRamsay Jones2008-12-191-0/+37
* Add a GIT_PATH_MAX constantRamsay Jones2008-12-091-1/+2