aboutsummaryrefslogtreecommitdiffstats
path: root/archive-tar.c
AgeCommit message (Expand)AuthorFilesLines
2024-02-12use xstrncmpz()René Scharfe1-1/+1
2023-12-26archive.h: remove unnecessary includeElijah Newren1-0/+1
2023-07-17Merge branch 'cw/compat-util-header-cleanup'Junio C Hamano1-1/+0
2023-07-06Merge branch 'gc/config-context'Junio C Hamano1-2/+3
2023-07-05git-compat-util: move alloc macros to git-compat-util.hCalvin Wan1-1/+0
2023-06-28config: pass kvi to die_bad_number()Glen Choo1-2/+2
2023-06-28config: add ctx arg to config_fn_tGlen Choo1-1/+2
2023-06-21object-store-ll.h: split this header out of object-store.hElijah Newren1-1/+1
2023-04-11git-zlib: move declarations for git-zlib functions from cache.hElijah Newren1-0/+1
2023-03-21write-or-die.h: move declarations for write-or-die.c functions from cache.hElijah Newren1-0/+1
2023-03-21treewide: be explicit about dependence on gettext.hElijah Newren1-0/+1
2023-02-23cache.h: remove dependence on hex.h; make other files include it explicitlyElijah Newren1-0/+1
2023-02-23alloc.h: move ALLOC_GROW() functions from cache.hElijah Newren1-1/+2
2022-10-30archive-tar: report filter start error only onceRené Scharfe1-0/+1
2022-09-01git-compat-util.h: use "UNUSED", not "UNUSED(var)"Ævar Arnfjörð Bjarmason1-2/+2
2022-08-19mark unused read_tree_recursive() callback parametersJeff King1-1/+1
2022-08-19config: mark unused callback parametersJeff King1-1/+2
2022-06-15archive-tar: use internal gzip by defaultRené Scharfe1-2/+2
2022-06-15archive-tar: use OS_CODE 3 (Unix) for internal gzipRené Scharfe1-0/+7
2022-06-15archive-tar: add internal gzip implementationRené Scharfe1-1/+44
2022-06-15archive-tar: factor out write_block()René Scharfe1-4/+9
2022-06-15archive: rename archiver data field to filter_commandRené Scharfe1-5/+5
2022-02-24archive-*.c: use designated initializers for "struct archiver"Ævar Arnfjörð Bjarmason1-3/+3
2021-11-25run-command API users: use strvec_push(), not argv constructionÆvar Arnfjörð Bjarmason1-6/+3
2021-03-13use CALLOC_ARRAYRené Scharfe1-1/+1
2020-11-09archive: support compression levels beyond 9René Scharfe1-1/+2
2020-09-19archive: read short blobs in archive.c::write_archive_entry()René Scharfe1-19/+3
2020-04-10parse_config_key(): return subsection len as size_tJeff King1-2/+2
2020-01-31streaming: allow open_istream() to handle any repoMatheus Tavares1-3/+3
2019-09-09Merge branch 'rs/pax-extended-header-length-fix'Junio C Hamano1-4/+10
2019-08-19archive-tar: turn length miscalculation warning into BUGRené Scharfe1-3/+3
2019-08-19archive-tar: use size_t in strbuf_append_ext_header()René Scharfe1-5/+5
2019-08-19archive-tar: fix pax extended header length calculationRené Scharfe1-1/+1
2019-08-19archive-tar: report wrong pax extended header lengthRené Scharfe1-0/+6
2019-04-01archive: convert struct archiver_args to object_idbrian m. carlson1-3/+4
2018-12-09Indent code with TABsNguyễn Thái Ngọc Duy1-1/+1
2018-11-12Upcast size_t variables to uintmax_t when printingTorsten Bögershausen1-1/+1
2018-08-20Merge branch 'nd/no-the-index'Junio C Hamano1-1/+1
2018-08-15Merge branch 'nd/i18n'Junio C Hamano1-6/+6
2018-08-13archive-*.c: use the right repositoryNguyễn Thái Ngọc Duy1-1/+1
2018-07-23archive-tar.c: mark more strings for translationNguyễn Thái Ngọc Duy1-6/+6
2018-07-18Merge branch 'sb/object-store-grafts'Junio C Hamano1-0/+1
2018-05-30Merge branch 'js/use-bug-macro'Junio C Hamano1-1/+1
2018-05-16object-store: move object access functions to object-store.hStefan Beller1-0/+1
2018-05-06Replace all die("BUG: ...") calls by BUG() onesJohannes Schindelin1-1/+1
2018-04-26cache.h: add repository argument to oid_object_infoStefan Beller1-1/+1
2018-03-14sha1_file: convert sha1_object_info* to object_idbrian m. carlson1-1/+1
2018-03-14streaming: convert open_istream to use struct object_idbrian m. carlson1-1/+1
2018-03-14archive: convert sha1_file_to_archive to struct object_idbrian m. carlson1-1/+1
2018-03-14archive: convert write_archive_entry_fn_t to object_idbrian m. carlson1-14/+14
2017-06-24Merge branch 'bw/config-h'Junio C Hamano1-0/+1
2017-06-15config: don't include config.h by defaultBrandon Williams1-0/+1
2017-05-09archive-tar: fix a sparse 'constant too large' warningRamsay Jones1-2/+2
2017-04-27timestamp_t: a new data type for timestampsJohannes Schindelin1-2/+5
2016-08-12Merge branch 'jk/big-and-future-archive-tar'Junio C Hamano1-10/+5
2016-08-06archive-tar: make write_extended_header() voidRené Scharfe1-10/+5
2016-07-15archive-tar: huge offset and future timestamps would not work on 32-bitJunio C Hamano1-0/+5
2016-07-01archive-tar: drop return valueJeff King1-7/+4
2016-07-01archive-tar: write extended headers for far-future mtimeJeff King1-3/+16
2016-07-01archive-tar: write extended headers for file sizes >= 8GBJeff King1-2/+29
2016-05-26archive-tar: convert snprintf to xsnprintfJeff King1-1/+1
2015-09-25archive-tar: use xsnprintf for trivial formattingJeff King1-13/+13
2015-09-25convert trivial sprintf / strcpy calls to xsnprintfJeff King1-1/+1
2015-09-25archive-tar: fix minor indentation violationJeff King1-1/+1
2014-10-20Revert "archive: honor tar.umask even for pax headers"Junio C Hamano1-2/+2
2014-09-11Merge branch 'rs/child-process-init'Junio C Hamano1-2/+1
2014-08-20run-command: introduce CHILD_PROCESS_INITRené Scharfe1-2/+1
2014-08-04archive: honor tar.umask even for pax headersbrian m. carlson1-2/+2
2013-01-23archive-tar: use parse_config_key when parsing configJeff King1-9/+1
2013-01-10Merge branch 'rs/leave-base-name-in-name-field-of-tar'Junio C Hamano1-0/+2
2013-01-05archive-tar: split long paths more carefullyRené Scharfe1-0/+2
2012-06-13archive: ustar header checksum is computed unsignedJunio C Hamano1-3/+3
2012-05-23Merge branch 'rs/archive-tree-in-tip-simplify'Junio C Hamano1-2/+2
2012-05-18archive-tar: keep const in checksum calculationRené Scharfe1-2/+2
2012-05-03archive-tar: stream large blobs to tar fileNguyễn Thái Ngọc Duy1-5/+51
2012-05-03archive: delegate blob reading to backendNguyễn Thái Ngọc Duy1-4/+21
2012-05-03archive-tar: unindent write_tar_entry by one levelNguyễn Thái Ngọc Duy1-31/+25
2012-05-03archive-tar: turn write_tar_entry into blob-writing onlyNguyễn Thái Ngọc Duy1-26/+52
2011-06-22upload-archive: allow user to turn off filtersJeff King1-1/+10
2011-06-22archive: provide builtin .tar.gz filterJeff King1-0/+2
2011-06-22archive: implement configurable tar filtersJeff King1-1/+106
2011-06-22archive: pass archiver struct to write_archive callbackJeff King1-1/+2
2011-06-22archive: refactor list of archive formatsJeff King1-3/+13
2011-06-22archive-tar: don't reload default config optionsJeff King1-1/+1
2009-05-08archive-tar.c: squelch a type mismatch warningJunio C Hamano1-1/+1
2008-10-12Replace calls to strbuf_init(&foo, 0) with STRBUF_INIT initializerBrandon Casey1-4/+2
2008-07-19archive: remove unused headersRené Scharfe1-2/+0
2008-07-15archive: centralize archive entry writingRené Scharfe1-79/+37
2008-07-15archive: add baselen member to struct archiver_argsRené Scharfe1-5/+3
2008-07-15add context pointer to read_tree_recursive()René Scharfe1-5/+6
2008-06-09Teach new attribute 'export-ignore' to git-archiveRené Scharfe1-0/+2
2008-05-14Provide git_config with a callback-data parameterJohannes Schindelin1-3/+3
2008-04-10git-archive: ignore prefix when checking file attributeRené Scharfe1-2/+4
2008-02-11archive-tar.c: guard config parser from value=NULLJunio C Hamano1-1/+1
2007-09-20Fix the expansion pattern of the pseudo-static path buffer.Pierre Habouzit1-3/+2
2007-09-16Now that cache.h needs strbuf.h, remove useless includes.Pierre Habouzit1-1/+0
2007-09-10Strbuf API extensions and fixes.Pierre Habouzit1-2/+2
2007-09-10Merge branch 'master' into ph/strbufJunio C Hamano1-1/+4
2007-09-06Simplify strbuf uses in archive-tar.c using strbuf APIPierre Habouzit1-49/+16
2007-09-06Rework strbuf API and semantics.Pierre Habouzit1-1/+1
2007-09-03archive: specfile support (--pretty=format: in archive files)René Scharfe1-1/+4
2007-05-21rename dirlink to gitlink.Martin Waitz1-2/+2
2007-05-18git-archive: convert archive entries like checkouts doRené Scharfe1-7/+9
2007-05-12git-archive: don't die when repository uses subprojectsLars Hjemli1-2/+2
2007-02-27convert object type handling from a string to a numberNicolas Pitre1-2/+2
2007-01-06Set default "tar" umask to 002 and owner.group to root.rootRené Scharfe1-4/+3
2006-12-20simplify inclusion of system header files.Junio C Hamano1-1/+0
2006-09-24git-tar-tree: Move code for git-archive --format=tar to archive-tar.cRene Scharfe1-0/+325