Go to file
Patrick Steinhardt 6411a0a896 builtin/blame: fix type of `length` variable when emitting object ID
The `length` variable is used to store how many bytes we wish to emit
from an object ID. This value will either be the full hash algorithm's
length, or the abbreviated hash that can be set via `--abbrev` or the
"core.abbrev" option. The former is of type `size_t`, whereas the latter
is of type `int`, which causes a warning with "-Wsign-compare".

The reason why `abbrev` is using a signed type is mostly that it is
initialized with `-1` to indicate that we have to compute the minimum
abbreviation length. This length is computed via `find_alignment()`,
which always gets called before `emit_other()`, and thus we can assume
that the value would never be negative in `emit_other()`.

In fact, we can even assume that the value will always be at least
`MINIMUM_ABBREV`, which is enforced by both `git_default_core_config()`
and `parse_opt_abbrev_cb()`. We implicitly rely on this by subtracting
up to 3 without checking for whether the value becomes negative. We then
pass the value to printf(3p) to print the prefix of our object's ID, so
if that assumption was violated we may end up with undefined behaviour.

Squelch the warning by asserting this invariant and casting the value of
`abbrev` to `size_t`. This allows us to store the whole length as an
unsigned integer, which we can then pass to `fwrite()`.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2024-12-06 20:20:05 +09:00
.github ci: create script to set up Git for Windows SDK 2024-10-09 11:33:04 -07:00
Documentation The fourteenth batch 2024-12-06 13:23:18 +09:00
block-sha1 sha1: do not redefine `platform_SHA_CTX` and friends 2024-09-27 11:27:47 -07:00
builtin builtin/blame: fix type of `length` variable when emitting object ID 2024-12-06 20:20:05 +09:00
ci test-lib: unconditionally enable leak checking 2024-11-21 08:23:47 +09:00
compat global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
contrib Merge branch 'bc/drop-ancient-libcurl-and-perl' 2024-12-04 10:14:48 +09:00
ewah global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
git-gui Merge https://github.com/j6t/git-gui 2024-11-11 12:47:44 +09:00
gitk-git
gitweb gitweb: make use of s///r 2024-10-23 16:16:36 -04:00
mergetools Merge branch 'ak/typofix-2.46-maint' 2024-10-04 14:21:40 -07:00
negotiator
oss-fuzz
perl Require Perl 5.26.0 2024-10-23 16:16:36 -04:00
po Merge branch 'l10n-de-2.47' of github.com:ralfth/git 2024-10-06 12:06:21 +08:00
refs global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
reftable global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
sha1 sha1: do not redefine `platform_SHA_CTX` and friends 2024-09-27 11:27:47 -07:00
sha1collisiondetection@855827c583
sha1dc
sha256
t global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
templates
trace2 global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
xdiff global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
.cirrus.yml
.clang-format clang-format: align consecutive macro definitions 2024-10-18 17:37:16 -04:00
.editorconfig
.gitattributes
.gitignore
.gitlab-ci.yml gitlab-ci: exercise Git on Windows 2024-10-09 11:33:05 -07:00
.gitmodules
.mailmap
.tsan-suppressions
CODE_OF_CONDUCT.md
COPYING
GIT-VERSION-GEN Prepare for 2.47.1 2024-11-20 14:43:30 +09:00
INSTALL Require Perl 5.26.0 2024-10-23 16:16:36 -04:00
LGPL-2.1
Makefile Makefile(s): avoid recipe prefix in conditional statements 2024-11-24 13:45:49 +01:00
README.md
RelNotes Prepare for 2.47.1 2024-11-20 14:43:30 +09:00
SECURITY.md
abspath.c
abspath.h
aclocal.m4
add-interactive.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
add-interactive.h
add-patch.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
advice.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
advice.h
alias.c
alias.h
alloc.c
alloc.h
apply.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
apply.h
archive-tar.c
archive-zip.c
archive.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
archive.h
attr.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
attr.h
banned.h
base85.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
base85.h
bisect.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
bisect.h bisect: fix leaking good/bad terms when reading multipe times 2024-11-21 08:23:40 +09:00
blame.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
blame.h builtin/blame: fix leaking blame entries with `--incremental` 2024-11-21 08:23:40 +09:00
blob.c
blob.h
bloom.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
bloom.h Merge branch 'ak/typofixes' 2024-09-23 10:35:07 -07:00
branch.c refs: allow passing flags when setting up a transaction 2024-11-21 07:59:14 +09:00
branch.h
builtin.h
bulk-checkin.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
bulk-checkin.h
bundle-uri.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
bundle-uri.h
bundle.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
bundle.h
cache-tree.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
cache-tree.h cache-tree: refactor verification to return error codes 2024-10-07 15:08:11 -07:00
cbtree.c
cbtree.h
chdir-notify.c
chdir-notify.h
check-builtins.sh
checkout.c
checkout.h
chunk-format.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
chunk-format.h
color.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
color.h
column.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
column.h
combine-diff.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
command-list.txt
commit-graph.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
commit-graph.h
commit-reach.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
commit-reach.h
commit-slab-decl.h
commit-slab-impl.h
commit-slab.h
commit.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
commit.h Merge branch 'jc/pass-repo-to-builtins' 2024-09-23 10:35:09 -07:00
common-main.c
config.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
config.h
config.mak.dev config.mak.dev: drop `-Wno-sign-compare` 2024-12-06 20:20:02 +09:00
config.mak.in
config.mak.uname
configure.ac
connect.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
connect.h
connected.c packfile: use object_id in find_pack_entry_one() 2024-10-25 17:35:46 -04:00
connected.h
convert.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
convert.h
copy.c
copy.h
credential.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
credential.h
csum-file.c csum-file: fix -Wsign-compare warning on 32-bit platform 2024-12-06 20:20:03 +09:00
csum-file.h
ctype.c
daemon.c daemon: fix type of `max_connections` 2024-12-06 20:20:04 +09:00
date.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
date.h
decorate.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
decorate.h
delta-islands.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
delta-islands.h
delta.h
detect-compiler
diagnose.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
diagnose.h
diff-delta.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
diff-lib.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
diff-merges.c diff.h: fix index used to loop through unsigned integer 2024-12-06 20:20:03 +09:00
diff-merges.h
diff-no-index.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
diff.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
diff.h diff.h: fix index used to loop through unsigned integer 2024-12-06 20:20:03 +09:00
diffcore-break.c diff: improve lifecycle management of diff queues 2024-09-30 11:23:05 -07:00
diffcore-delta.c
diffcore-order.c diff.h: fix index used to loop through unsigned integer 2024-12-06 20:20:03 +09:00
diffcore-pickaxe.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
diffcore-rename.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
diffcore-rotate.c diff.h: fix index used to loop through unsigned integer 2024-12-06 20:20:03 +09:00
diffcore.h diff: improve lifecycle management of diff queues 2024-09-30 11:23:05 -07:00
dir-iterator.c
dir-iterator.h
dir.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
dir.h
editor.c
editor.h
entry.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
entry.h
environment.c
environment.h
exec-cmd.c
exec-cmd.h
fetch-negotiator.c
fetch-negotiator.h
fetch-pack.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
fetch-pack.h
fmt-merge-msg.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
fmt-merge-msg.h
fsck.c
fsck.h ref: add symlink ref content check for files backend 2024-11-21 08:21:34 +09:00
fsmonitor--daemon.h
fsmonitor-ipc.c
fsmonitor-ipc.h
fsmonitor-ll.h
fsmonitor-path-utils.h
fsmonitor-settings.c
fsmonitor-settings.h
fsmonitor.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
fsmonitor.h
generate-cmdlist.sh
generate-configlist.sh
generate-hooklist.sh
gettext.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
gettext.h
git-archimport.perl Require Perl 5.26.0 2024-10-23 16:16:36 -04:00
git-compat-util.h git-compat-util: introduce macros to disable "-Wsign-compare" warnings 2024-12-06 20:20:01 +09:00
git-curl-compat.h git-curl-compat: remove check for curl 7.56.0 2024-10-23 16:16:35 -04:00
git-cvsexportcommit.perl Require Perl 5.26.0 2024-10-23 16:16:36 -04:00
git-cvsimport.perl Require Perl 5.26.0 2024-10-23 16:16:36 -04:00
git-cvsserver.perl Require Perl 5.26.0 2024-10-23 16:16:36 -04:00
git-difftool--helper.sh
git-filter-branch.sh
git-instaweb.sh
git-merge-octopus.sh
git-merge-one-file.sh
git-merge-resolve.sh
git-mergetool--lib.sh
git-mergetool.sh
git-p4.py
git-quiltimport.sh
git-request-pull.sh
git-send-email.perl Require Perl 5.26.0 2024-10-23 16:16:36 -04:00
git-sh-i18n.sh
git-sh-setup.sh
git-submodule.sh
git-svn.perl Require Perl 5.26.0 2024-10-23 16:16:36 -04:00
git-web--browse.sh
git-zlib.c
git-zlib.h
git.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
git.rc
gpg-interface.c gpg-interface: address -Wsign-comparison warnings 2024-12-06 20:20:04 +09:00
gpg-interface.h
graph.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
graph.h
grep.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
grep.h
hash-lookup.c
hash-lookup.h
hash.h hash.h: set NEEDS_CLONE_HELPER_UNSAFE in fallback mode 2024-10-03 11:18:36 -07:00
hashmap.c
hashmap.h
help.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
help.h global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
hex-ll.c
hex-ll.h
hex.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
hex.h
hook.c
hook.h
http-backend.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
http-fetch.c http-fetch: clear leaking git-index-pack(1) arguments 2024-09-25 10:24:52 -07:00
http-push.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
http-walker.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
http.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
http.h http: fix leak of http_object_request struct 2024-09-25 10:24:55 -07:00
ident.c
ident.h
imap-send.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
iterator.h
json-writer.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
json-writer.h
khash.h
kwset.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
kwset.h
levenshtein.c
levenshtein.h
line-log.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
line-log.h
line-range.c
line-range.h
linear-assignment.c
linear-assignment.h
list-objects-filter-options.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
list-objects-filter-options.h
list-objects-filter.c diff.h: fix index used to loop through unsigned integer 2024-12-06 20:20:03 +09:00
list-objects-filter.h
list-objects.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
list-objects.h
list.h
lockfile.c
lockfile.h
log-tree.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
log-tree.h rebase-update-refs: extract load_branch_decorations 2024-10-09 10:52:45 -07:00
loose.c loose: don't rely on repository global state 2024-10-09 11:51:31 -07:00
loose.h
ls-refs.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
ls-refs.h
mailinfo.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
mailinfo.h
mailmap.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
mailmap.h
match-trees.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
match-trees.h
mem-pool.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
mem-pool.h
merge-blobs.c
merge-blobs.h
merge-ll.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
merge-ll.h
merge-ort-wrappers.c
merge-ort-wrappers.h
merge-ort.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
merge-ort.h
merge-recursive.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
merge-recursive.h
merge.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
merge.h
mergesort.h
midx-write.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
midx.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
midx.h
name-hash.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
name-hash.h
notes-cache.c
notes-cache.h
notes-merge.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
notes-merge.h
notes-utils.c
notes-utils.h
notes.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
notes.h
object-file-convert.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
object-file-convert.h
object-file.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
object-file.h finalize_object_file(): implement collision check 2024-09-27 11:27:47 -07:00
object-name.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
object-name.h
object-store-ll.h
object-store.h
object.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
object.h
oid-array.c
oid-array.h
oidmap.c
oidmap.h
oidset.c
oidset.h
oidtree.c global: Fix duplicate word typos 2024-10-21 16:05:04 -04:00
oidtree.h
pack-bitmap-write.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
pack-bitmap.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
pack-bitmap.h
pack-check.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
pack-mtimes.c
pack-mtimes.h
pack-objects.c
pack-objects.h
pack-revindex.c
pack-revindex.h
pack-write.c Merge branch 'ps/leakfixes-part-8' 2024-10-10 14:22:29 -07:00
pack.h pack-write: fix return parameter of `write_rev_file_order()` 2024-09-30 11:23:08 -07:00
packfile.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
packfile.h packfile: use object_id in find_pack_entry_one() 2024-10-25 17:35:46 -04:00
pager.c
pager.h
parallel-checkout.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
parallel-checkout.h
parse-options-cb.c
parse-options.c parse-options: free previous value of `OPTION_FILENAME` 2024-09-27 08:25:35 -07:00
parse-options.h builtin: pass repository to sub commands 2024-11-26 10:36:08 +09:00
parse.c
parse.h
patch-delta.c
patch-ids.c diff.h: fix index used to loop through unsigned integer 2024-12-06 20:20:03 +09:00
patch-ids.h
path.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
path.h
pathspec.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
pathspec.h
pkt-line.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
pkt-line.h
preload-index.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
preload-index.h
pretty.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
pretty.h
prio-queue.c
prio-queue.h
progress.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
progress.h
promisor-remote.c promisor-remote: fix leaking partial clone filter 2024-09-27 08:25:36 -07:00
promisor-remote.h
prompt.c
prompt.h
protocol-caps.c
protocol-caps.h
protocol.c
protocol.h
prune-packed.c
prune-packed.h
pseudo-merge.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
pseudo-merge.h pseudo-merge: fix various memory leaks 2024-09-30 11:23:06 -07:00
quote.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
quote.h
range-diff.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
range-diff.h
reachable.c diff.h: fix index used to loop through unsigned integer 2024-12-06 20:20:03 +09:00
reachable.h
read-cache-ll.h global: Fix duplicate word typos 2024-10-21 16:05:04 -04:00
read-cache.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
read-cache.h
rebase-interactive.c
rebase-interactive.h
rebase.c
rebase.h
ref-filter.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
ref-filter.h
reflog-walk.c diff.h: fix index used to loop through unsigned integer 2024-12-06 20:20:03 +09:00
reflog-walk.h
reflog.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
reflog.h
refs.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
refs.h Merge branch 'sj/ref-contents-check' 2024-12-04 10:14:42 +09:00
refspec.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
refspec.h refspec: store raw refspecs inside refspec_item 2024-11-12 18:16:48 +09:00
remote-curl.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
remote.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
remote.h Merge branch 'xx/remote-server-option-config' 2024-10-15 16:56:43 -04:00
replace-object.c
replace-object.h
repo-settings.c
repo-settings.h
repository.c
repository.h
rerere.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
rerere.h
reset.c
reset.h
resolve-undo.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
resolve-undo.h
revision.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
revision.h
run-command.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
run-command.h
sane-ctype.h
scalar.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
send-pack.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
send-pack.h
sequencer.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
sequencer.h
serve.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
serve.h
server-info.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
server-info.h
setup.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
setup.h
sh-i18n--envsubst.c
sha1dc_git.c
sha1dc_git.h sha1: do not redefine `platform_SHA_CTX` and friends 2024-09-27 11:27:47 -07:00
shallow.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
shallow.h
shared.mak
shell.c shell: fix leaking strings 2024-09-30 11:23:03 -07:00
shortlog.h
sideband.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
sideband.h
sigchain.c
sigchain.h
simple-ipc.h simple-ipc: split async server initialization and running 2024-10-08 12:03:56 -07:00
sparse-index.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
sparse-index.h sparse-checkout: disable advice in 'disable' 2024-09-23 13:19:01 -07:00
split-index.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
split-index.h
stable-qsort.c
statinfo.c
statinfo.h
strbuf.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
strbuf.h
streaming.c
streaming.h
string-list.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
string-list.h
strmap.c
strmap.h
strvec.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
strvec.h strvec: introduce new `strvec_splice()` function 2024-11-21 08:23:42 +09:00
sub-process.c
sub-process.h
submodule-config.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
submodule-config.h submodule: fix leaking submodule entry list 2024-09-30 11:23:03 -07:00
submodule.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
submodule.h submodule: fix leaking update strategy 2024-09-27 08:25:34 -07:00
symlinks.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
symlinks.h
tag.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
tag.h
tar.h
tempfile.c
tempfile.h
thread-utils.c
thread-utils.h
tmp-objdir.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
tmp-objdir.h
trace.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
trace.h
trace2.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
trace2.h
trailer.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
trailer.h trailer: spread usage of "trailer_block" language 2024-10-14 12:33:02 -04:00
transport-helper.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
transport-internal.h
transport.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
transport.h transport: introduce parse_transport_option() method 2024-10-08 10:22:06 -07:00
tree-diff.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
tree-walk.c
tree-walk.h
tree.c
tree.h
unicode-width.h
unimplemented.sh
unix-socket.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
unix-socket.h
unix-stream-server.c
unix-stream-server.h
unpack-trees.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
unpack-trees.h
upload-pack.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
upload-pack.h
url.c
url.h
urlmatch.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
urlmatch.h
usage.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
userdiff.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
userdiff.h
utf8.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
utf8.h utf8.h: squelch unused-parameter warnings with NO_ICONV 2024-10-02 15:52:48 -07:00
varint.c
varint.h
version.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
version.h
versioncmp.c global: trivial conversions to fix `-Wsign-compare` warnings 2024-12-06 20:20:04 +09:00
versioncmp.h
walker.c refs: allow passing flags when setting up a transaction 2024-11-21 07:59:14 +09:00
walker.h http-walker: use object_id instead of bare hash 2024-10-25 17:35:46 -04:00
wildmatch.c
wildmatch.h
worktree.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
worktree.h worktree: link worktrees with relative paths 2024-10-08 11:49:22 -07:00
wrap-for-bin.sh
wrapper.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
wrapper.h
write-or-die.c
write-or-die.h
ws.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
ws.h
wt-status.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
wt-status.h
xdiff-interface.c global: mark code units that generate warnings with `-Wsign-compare` 2024-12-06 20:20:02 +09:00
xdiff-interface.h

README.md

Build status

Git - fast, scalable, distributed revision control system

Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals.

Git is an Open Source project covered by the GNU General Public License version 2 (some parts of it are under different licenses, compatible with the GPLv2). It was originally written by Linus Torvalds with help of a group of hackers around the net.

Please read the file INSTALL for installation instructions.

Many Git online resources are accessible from https://git-scm.com/ including full documentation and Git related tools.

See Documentation/gittutorial.txt to get started, then see Documentation/giteveryday.txt for a useful minimum set of commands, and Documentation/git-<commandname>.txt for documentation of each command. If git has been correctly installed, then the tutorial can also be read with man gittutorial or git help tutorial, and the documentation of each command with man git-<commandname> or git help <commandname>.

CVS users may also want to read Documentation/gitcvs-migration.txt (man gitcvs-migration or git help cvs-migration if git is installed).

The user discussion and development of Git take place on the Git mailing list -- everyone is welcome to post bug reports, feature requests, comments and patches to git@vger.kernel.org (read Documentation/SubmittingPatches for instructions on patch submission and Documentation/CodingGuidelines).

Those wishing to help with error message, usage and informational message string translations (localization l10) should see po/README.md (a po file is a Portable Object file that holds the translations).

To subscribe to the list, send an email to git+subscribe@vger.kernel.org (see https://subspace.kernel.org/subscribing.html for details). The mailing list archives are available at https://lore.kernel.org/git/, https://marc.info/?l=git and other archival sites.

Issues which are security relevant should be disclosed privately to the Git Security mailing list git-security@googlegroups.com.

The maintainer frequently sends the "What's cooking" reports that list the current status of various development topics to the mailing list. The discussion following them give a good reference for project status, development direction and remaining tasks.

The name "git" was given by Linus Torvalds when he wrote the very first version. He described the tool as "the stupid content tracker" and the name as (depending on your mood):

  • random three-letter combination that is pronounceable, and not actually used by any common UNIX command. The fact that it is a mispronunciation of "get" may or may not be relevant.
  • stupid. contemptible and despicable. simple. Take your pick from the dictionary of slang.
  • "global information tracker": you're in a good mood, and it actually works for you. Angels sing, and a light suddenly fills the room.
  • "goddamn idiotic truckload of sh*t": when it breaks