├── .cirrus.yml ├── .github ├── README.md ├── ci │ ├── before-install.sh │ └── build.sh └── workflows │ └── closepr.yml ├── .gitignore ├── CHANGELOG ├── CHANGES ├── LICENCE ├── Makefile.am ├── Makefile.common.in ├── Makefile.inc ├── README ├── README.portable ├── TODO ├── autogen.sh ├── compat ├── Makefile.am ├── asprintf.c ├── base64.c ├── bsd-poll.c ├── bsd-poll.h ├── closefrom.c ├── err.c ├── fmt_scaled.c ├── freezero.c ├── getdtablecount.c ├── getopt.c ├── getprogname.c ├── imsg-buffer.c ├── imsg.c ├── imsg.h ├── landlock.c ├── merge.c ├── reallocarray.c ├── recallocarray.c ├── setproctitle.c ├── sha2.c ├── sha2.h ├── siphash.c ├── siphash.h ├── strlcat.c ├── strlcpy.c ├── strndup.c ├── strnlen.c ├── strsep.c ├── strtonum.c ├── tree.h └── uuid.c ├── configure.ac ├── cvg ├── Makefile.am ├── cvg.1 └── cvg.c ├── gitwrapper ├── Makefile.am ├── gitwrapper.1 └── gitwrapper.c ├── got-dist.txt ├── got-version.mk ├── got ├── Makefile.am ├── git-repository.5 ├── got-worktree.5 ├── got.1 ├── got.c └── got.conf.5 ├── gotadmin ├── Makefile.am ├── gotadmin.1 └── gotadmin.c ├── gotctl ├── Makefile.am ├── gotctl.8 └── gotctl.c ├── gotd ├── Makefile.am ├── auth.c ├── auth.h ├── chroot-notobsd.c ├── chroot-openbsd.c ├── gotd-secrets.conf.5 ├── gotd.8 ├── gotd.c ├── gotd.conf.5 ├── gotd.h ├── imsg.c ├── libexec │ ├── Makefile.am │ ├── Makefile.inc │ ├── got-notify-email │ │ ├── Makefile.am │ │ └── got-notify-email.c │ ├── got-notify-http │ │ ├── Makefile.am │ │ ├── got-notify-http.c │ │ └── utf8d.h │ ├── gotsys-apply │ │ ├── Makefile │ │ └── gotsys-apply.c │ └── gotsys-check │ │ ├── Makefile │ │ └── gotsys-check.c ├── listen.c ├── listen.h ├── notify.c ├── notify.h ├── parse.y ├── privsep_stub.c ├── repo_imsg.c ├── repo_read.c ├── repo_read.h ├── repo_write.c ├── repo_write.h ├── secrets.c ├── secrets.h ├── session_read.c ├── session_read.h ├── session_write.c └── session_write.h ├── gotsh ├── Makefile.am ├── gotsh.1 └── gotsh.c ├── gotsys ├── Makefile ├── gotsys.1 ├── gotsys.c ├── gotsys.conf.5 ├── gotsys.h ├── parse.y └── privsep_stub.c ├── gotsysctl ├── Makefile ├── gotsysctl.8 └── gotsysctl.c ├── gotsysd ├── Makefile ├── auth.c ├── auth.h ├── gotsysd.8 ├── gotsysd.c ├── gotsysd.conf.5 ├── gotsysd.h ├── helpers.c ├── helpers.h ├── imsg.c ├── libexec │ ├── Makefile │ ├── Makefile.inc │ ├── gotsys-apply-conf │ │ ├── Makefile │ │ └── gotsys-apply-conf.c │ ├── gotsys-groupadd │ │ ├── Makefile │ │ └── gotsys-groupadd.c │ ├── gotsys-read-conf │ │ ├── Makefile │ │ └── gotsys-read-conf.c │ ├── gotsys-repo-create │ │ ├── Makefile │ │ └── gotsys-repo-create.c │ ├── gotsys-rmkeys │ │ ├── Makefile │ │ └── gotsys-rmkeys.c │ ├── gotsys-sshdconfig │ │ ├── Makefile │ │ └── gotsys-sshdconfig.c │ ├── gotsys-useradd │ │ ├── Makefile │ │ ├── gotsys-useradd.c │ │ ├── pwd_mkdb.c │ │ └── pwd_mkdb.h │ ├── gotsys-userhome │ │ ├── Makefile │ │ └── gotsys-userhome.c │ ├── gotsys-userkeys │ │ ├── Makefile │ │ └── gotsys-userkeys.c │ └── gotsys-write-conf │ │ ├── Makefile │ │ └── gotsys-write-conf.c ├── listen.c ├── listen.h ├── parse.y ├── sysconf.c └── sysconf.h ├── gotwebd ├── Makefile.am ├── Makefile.inc ├── auth.c ├── config.c ├── fcgi.c ├── files │ └── htdocs │ │ └── gotwebd │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-384x384.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── got.png │ │ ├── got_large.png │ │ ├── gotweb.css │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest ├── got_operations.c ├── gotweb.c ├── gotwebd.8 ├── gotwebd.c ├── gotwebd.conf.5 ├── gotwebd.h ├── login.c ├── pages.tmpl ├── parse.y └── sockets.c ├── include ├── got_blame.h ├── got_cancel.h ├── got_commit_graph.h ├── got_compat2.h ├── got_date.h ├── got_dial.h ├── got_diff.h ├── got_error.h ├── got_fetch.h ├── got_gotconfig.h ├── got_keyword.h ├── got_object.h ├── got_opentemp.h ├── got_patch.h ├── got_path.h ├── got_privsep.h ├── got_reference.h ├── got_repository.h ├── got_repository_admin.h ├── got_repository_dump.h ├── got_repository_load.h ├── got_send.h ├── got_serve.h ├── got_sigs.h ├── got_utf8.h ├── got_version.h ├── got_worktree.h └── got_worktree_cvg.h ├── lib ├── Makefile ├── arraylist.h ├── blame.c ├── bloom.c ├── bloom.h ├── buf.c ├── buf.h ├── bufio.c ├── bufio.h ├── commit_graph.c ├── date.c ├── deflate.c ├── delta.c ├── delta_cache.c ├── deltify.c ├── dial.c ├── diff.c ├── diff3.c ├── diff_atomize_text.c ├── diff_debug.h ├── diff_internal.h ├── diff_main.c ├── diff_main.h ├── diff_myers.c ├── diff_output.c ├── diff_output.h ├── diff_output_edscript.c ├── diff_output_plain.c ├── diff_output_unidiff.c ├── diff_patience.c ├── diffreg.c ├── dump.c ├── error.c ├── fetch.c ├── fileindex.c ├── gitconfig.c ├── gitproto.c ├── got_lib_deflate.h ├── got_lib_delta.h ├── got_lib_delta_cache.h ├── got_lib_deltify.h ├── got_lib_dial.h ├── got_lib_diff.h ├── got_lib_fileindex.h ├── got_lib_gitconfig.h ├── got_lib_gitproto.h ├── got_lib_gotconfig.h ├── got_lib_hash.h ├── got_lib_inflate.h ├── got_lib_lockfile.h ├── got_lib_object.h ├── got_lib_object_cache.h ├── got_lib_object_create.h ├── got_lib_object_idcache.h ├── got_lib_object_idset.h ├── got_lib_object_parse.h ├── got_lib_object_qid.h ├── got_lib_pack.h ├── got_lib_pack_create.h ├── got_lib_pack_index.h ├── got_lib_pkt.h ├── got_lib_poll.h ├── got_lib_privsep.h ├── got_lib_ratelimit.h ├── got_lib_repository.h ├── got_lib_worktree.h ├── got_lib_worktree_cvg.h ├── gotconfig.c ├── gotd_imsg.c ├── gotsys_conf.c ├── gotsys_imsg.c ├── gotsys_uidset.c ├── hash.c ├── inflate.c ├── keyword.c ├── load.c ├── lockfile.c ├── log.c ├── log.h ├── murmurhash2.c ├── murmurhash2.h ├── object.c ├── object_cache.c ├── object_create.c ├── object_idset.c ├── object_open_io.c ├── object_open_privsep.c ├── object_parse.c ├── object_qid.c ├── opentemp.c ├── pack.c ├── pack_create.c ├── pack_create_io.c ├── pack_create_privsep.c ├── pack_index.c ├── patch.c ├── path.c ├── pkt.c ├── pollfd.c ├── privsep.c ├── ratelimit.c ├── rcsutil.c ├── rcsutil.h ├── read_gitconfig.c ├── read_gitconfig_privsep.c ├── read_gotconfig.c ├── read_gotconfig_privsep.c ├── reference.c ├── reference_parse.c ├── repository.c ├── repository_admin.c ├── repository_init.c ├── send.c ├── serve.c ├── sigs.c ├── utf8.c ├── worktree.c ├── worktree_cvg.c └── worktree_open.c ├── libexec ├── Makefile.am ├── Makefile.inc ├── got-fetch-http │ ├── Makefile.am │ └── got-fetch-http.c ├── got-fetch-pack │ ├── Makefile.am │ └── got-fetch-pack.c ├── got-index-pack │ ├── Makefile.am │ └── got-index-pack.c ├── got-read-blob │ ├── Makefile.am │ └── got-read-blob.c ├── got-read-commit │ ├── Makefile.am │ └── got-read-commit.c ├── got-read-gitconfig │ ├── Makefile.am │ └── got-read-gitconfig.c ├── got-read-gotconfig │ ├── Makefile.am │ ├── got-read-gotconfig.c │ ├── gotconfig.h │ └── parse.y ├── got-read-object │ ├── Makefile.am │ └── got-read-object.c ├── got-read-pack │ ├── Makefile.am │ └── got-read-pack.c ├── got-read-patch │ ├── Makefile.am │ └── got-read-patch.c ├── got-read-tag │ ├── Makefile.am │ └── got-read-tag.c ├── got-read-tree │ ├── Makefile.am │ └── got-read-tree.c └── got-send-pack │ ├── Makefile.am │ └── got-send-pack.c ├── maintscripts ├── README.md ├── mk-portable-release.sh └── sync-upstream.sh ├── regress ├── Makefile ├── Makefile.inc ├── cmdline │ ├── Makefile │ ├── Makefile.am │ ├── add.sh │ ├── backout.sh │ ├── blame.sh │ ├── branch.sh │ ├── cat.sh │ ├── checkout.sh │ ├── cherrypick.sh │ ├── cleanup.sh │ ├── clone.sh │ ├── commit.sh │ ├── common.sh │ ├── diff.sh │ ├── dump.sh │ ├── fetch.sh │ ├── histedit.sh │ ├── http-server │ ├── import.sh │ ├── init.sh │ ├── integrate.sh │ ├── load.sh │ ├── log.sh │ ├── memleak.sh │ ├── merge.sh │ ├── pack.sh │ ├── patch.sh │ ├── rebase.sh │ ├── ref.sh │ ├── revert.sh │ ├── rm.sh │ ├── send.sh │ ├── stage.sh │ ├── status.sh │ ├── tag.sh │ ├── tree.sh │ ├── unstage.sh │ └── update.sh ├── delta │ ├── Makefile │ └── delta_test.c ├── deltify │ ├── Makefile │ └── deltify_test.c ├── fetch │ ├── Makefile │ └── fetch_test.c ├── gotd │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── check_test_repo.sh │ ├── common.sh │ ├── connection_limit.sh │ ├── email_notification.sh │ ├── http-server │ ├── http_notification.sh │ ├── http_notification_hmac.sh │ ├── large_files.sh │ ├── prepare_large_files.sh │ ├── prepare_test_repo.sh │ ├── repo_read.sh │ ├── repo_read_access_denied.sh │ ├── repo_write.sh │ ├── repo_write_empty.sh │ ├── repo_write_protected.sh │ ├── repo_write_readonly.sh │ ├── request_bad.sh │ ├── smtp-server │ └── test_git_interop.sh ├── gotsysd │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── build-got.sh │ ├── common.sh │ ├── http-server │ ├── test_gotsysd.sh │ └── test_gotwebd.sh ├── gotwebd │ ├── Makefile │ ├── action_blame.html │ ├── action_commits.html │ ├── action_diff.html │ ├── action_patch.html │ ├── action_summary.html │ ├── action_tree.html │ ├── commits_page.html │ ├── common.sh │ ├── gotwebd_test.c │ ├── prepare_test_repo.sh │ ├── test_gotwebd.sh │ └── test_gotwebd_paginate.sh ├── idset │ ├── Makefile │ └── idset_test.c ├── path │ ├── Makefile │ └── path_test.c ├── secrets │ ├── .gitignore │ ├── 01.conf │ ├── 01.exp │ ├── 02.conf │ ├── 02.exp │ ├── 03.conf │ ├── 04.conf │ ├── 05.conf │ ├── Makefile │ └── secrets-parser.c ├── template │ ├── 00-empty.tmpl │ ├── 01-noise-only.tmpl │ ├── 02-only-verbatim.tmpl │ ├── 02.expected │ ├── 03-block.tmpl │ ├── 03.expected │ ├── 04-flow.tmpl │ ├── 04.expected │ ├── 05-loop.tmpl │ ├── 05.expected │ ├── 06-escape.tmpl │ ├── 06.expected │ ├── 07-printf.tmpl │ ├── 07.expected │ ├── 08-dangling.tmpl │ ├── 08.expected │ ├── Makefile │ ├── lists.h │ ├── runbase.c │ └── runlist.c └── tog │ ├── Makefile │ ├── blame.sh │ ├── common.sh │ ├── diff.sh │ ├── log.sh │ ├── ref.sh │ └── tree.sh ├── template ├── Makefile.am ├── Makefile.common.in ├── configure.ac ├── got_compat.h ├── parse.y ├── template.1 ├── template.7 ├── template.c ├── tmpl.c └── tmpl.h ├── tog ├── Makefile.am ├── tog.1 └── tog.c └── util ├── got-build-regress.sh ├── got-portable-ver.sh └── uncompress-loose-object.sh /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/ci/before-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/.github/ci/before-install.sh -------------------------------------------------------------------------------- /.github/ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/.github/ci/build.sh -------------------------------------------------------------------------------- /.github/workflows/closepr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/.github/workflows/closepr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.common.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/Makefile.common.in -------------------------------------------------------------------------------- /Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/Makefile.inc -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/README -------------------------------------------------------------------------------- /README.portable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/README.portable -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/autogen.sh -------------------------------------------------------------------------------- /compat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/Makefile.am -------------------------------------------------------------------------------- /compat/asprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/asprintf.c -------------------------------------------------------------------------------- /compat/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/base64.c -------------------------------------------------------------------------------- /compat/bsd-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/bsd-poll.c -------------------------------------------------------------------------------- /compat/bsd-poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/bsd-poll.h -------------------------------------------------------------------------------- /compat/closefrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/closefrom.c -------------------------------------------------------------------------------- /compat/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/err.c -------------------------------------------------------------------------------- /compat/fmt_scaled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/fmt_scaled.c -------------------------------------------------------------------------------- /compat/freezero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/freezero.c -------------------------------------------------------------------------------- /compat/getdtablecount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/getdtablecount.c -------------------------------------------------------------------------------- /compat/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/getopt.c -------------------------------------------------------------------------------- /compat/getprogname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/getprogname.c -------------------------------------------------------------------------------- /compat/imsg-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/imsg-buffer.c -------------------------------------------------------------------------------- /compat/imsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/imsg.c -------------------------------------------------------------------------------- /compat/imsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/imsg.h -------------------------------------------------------------------------------- /compat/landlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/landlock.c -------------------------------------------------------------------------------- /compat/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/merge.c -------------------------------------------------------------------------------- /compat/reallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/reallocarray.c -------------------------------------------------------------------------------- /compat/recallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/recallocarray.c -------------------------------------------------------------------------------- /compat/setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/setproctitle.c -------------------------------------------------------------------------------- /compat/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/sha2.c -------------------------------------------------------------------------------- /compat/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/sha2.h -------------------------------------------------------------------------------- /compat/siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/siphash.c -------------------------------------------------------------------------------- /compat/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/siphash.h -------------------------------------------------------------------------------- /compat/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/strlcat.c -------------------------------------------------------------------------------- /compat/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/strlcpy.c -------------------------------------------------------------------------------- /compat/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/strndup.c -------------------------------------------------------------------------------- /compat/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/strnlen.c -------------------------------------------------------------------------------- /compat/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/strsep.c -------------------------------------------------------------------------------- /compat/strtonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/strtonum.c -------------------------------------------------------------------------------- /compat/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/tree.h -------------------------------------------------------------------------------- /compat/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/compat/uuid.c -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/configure.ac -------------------------------------------------------------------------------- /cvg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/cvg/Makefile.am -------------------------------------------------------------------------------- /cvg/cvg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/cvg/cvg.1 -------------------------------------------------------------------------------- /cvg/cvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/cvg/cvg.c -------------------------------------------------------------------------------- /gitwrapper/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gitwrapper/Makefile.am -------------------------------------------------------------------------------- /gitwrapper/gitwrapper.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gitwrapper/gitwrapper.1 -------------------------------------------------------------------------------- /gitwrapper/gitwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gitwrapper/gitwrapper.c -------------------------------------------------------------------------------- /got-dist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/got-dist.txt -------------------------------------------------------------------------------- /got-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/got-version.mk -------------------------------------------------------------------------------- /got/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/got/Makefile.am -------------------------------------------------------------------------------- /got/git-repository.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/got/git-repository.5 -------------------------------------------------------------------------------- /got/got-worktree.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/got/got-worktree.5 -------------------------------------------------------------------------------- /got/got.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/got/got.1 -------------------------------------------------------------------------------- /got/got.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/got/got.c -------------------------------------------------------------------------------- /got/got.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/got/got.conf.5 -------------------------------------------------------------------------------- /gotadmin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotadmin/Makefile.am -------------------------------------------------------------------------------- /gotadmin/gotadmin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotadmin/gotadmin.1 -------------------------------------------------------------------------------- /gotadmin/gotadmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotadmin/gotadmin.c -------------------------------------------------------------------------------- /gotctl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotctl/Makefile.am -------------------------------------------------------------------------------- /gotctl/gotctl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotctl/gotctl.8 -------------------------------------------------------------------------------- /gotctl/gotctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotctl/gotctl.c -------------------------------------------------------------------------------- /gotd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/Makefile.am -------------------------------------------------------------------------------- /gotd/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/auth.c -------------------------------------------------------------------------------- /gotd/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/auth.h -------------------------------------------------------------------------------- /gotd/chroot-notobsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/chroot-notobsd.c -------------------------------------------------------------------------------- /gotd/chroot-openbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/chroot-openbsd.c -------------------------------------------------------------------------------- /gotd/gotd-secrets.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/gotd-secrets.conf.5 -------------------------------------------------------------------------------- /gotd/gotd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/gotd.8 -------------------------------------------------------------------------------- /gotd/gotd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/gotd.c -------------------------------------------------------------------------------- /gotd/gotd.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/gotd.conf.5 -------------------------------------------------------------------------------- /gotd/gotd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/gotd.h -------------------------------------------------------------------------------- /gotd/imsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/imsg.c -------------------------------------------------------------------------------- /gotd/libexec/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/Makefile.am -------------------------------------------------------------------------------- /gotd/libexec/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/Makefile.inc -------------------------------------------------------------------------------- /gotd/libexec/got-notify-email/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/got-notify-email/Makefile.am -------------------------------------------------------------------------------- /gotd/libexec/got-notify-email/got-notify-email.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/got-notify-email/got-notify-email.c -------------------------------------------------------------------------------- /gotd/libexec/got-notify-http/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/got-notify-http/Makefile.am -------------------------------------------------------------------------------- /gotd/libexec/got-notify-http/got-notify-http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/got-notify-http/got-notify-http.c -------------------------------------------------------------------------------- /gotd/libexec/got-notify-http/utf8d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/got-notify-http/utf8d.h -------------------------------------------------------------------------------- /gotd/libexec/gotsys-apply/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/gotsys-apply/Makefile -------------------------------------------------------------------------------- /gotd/libexec/gotsys-apply/gotsys-apply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/gotsys-apply/gotsys-apply.c -------------------------------------------------------------------------------- /gotd/libexec/gotsys-check/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/gotsys-check/Makefile -------------------------------------------------------------------------------- /gotd/libexec/gotsys-check/gotsys-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/libexec/gotsys-check/gotsys-check.c -------------------------------------------------------------------------------- /gotd/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/listen.c -------------------------------------------------------------------------------- /gotd/listen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/listen.h -------------------------------------------------------------------------------- /gotd/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/notify.c -------------------------------------------------------------------------------- /gotd/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/notify.h -------------------------------------------------------------------------------- /gotd/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/parse.y -------------------------------------------------------------------------------- /gotd/privsep_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/privsep_stub.c -------------------------------------------------------------------------------- /gotd/repo_imsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/repo_imsg.c -------------------------------------------------------------------------------- /gotd/repo_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/repo_read.c -------------------------------------------------------------------------------- /gotd/repo_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/repo_read.h -------------------------------------------------------------------------------- /gotd/repo_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/repo_write.c -------------------------------------------------------------------------------- /gotd/repo_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/repo_write.h -------------------------------------------------------------------------------- /gotd/secrets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/secrets.c -------------------------------------------------------------------------------- /gotd/secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/secrets.h -------------------------------------------------------------------------------- /gotd/session_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/session_read.c -------------------------------------------------------------------------------- /gotd/session_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/session_read.h -------------------------------------------------------------------------------- /gotd/session_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/session_write.c -------------------------------------------------------------------------------- /gotd/session_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotd/session_write.h -------------------------------------------------------------------------------- /gotsh/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsh/Makefile.am -------------------------------------------------------------------------------- /gotsh/gotsh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsh/gotsh.1 -------------------------------------------------------------------------------- /gotsh/gotsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsh/gotsh.c -------------------------------------------------------------------------------- /gotsys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsys/Makefile -------------------------------------------------------------------------------- /gotsys/gotsys.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsys/gotsys.1 -------------------------------------------------------------------------------- /gotsys/gotsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsys/gotsys.c -------------------------------------------------------------------------------- /gotsys/gotsys.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsys/gotsys.conf.5 -------------------------------------------------------------------------------- /gotsys/gotsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsys/gotsys.h -------------------------------------------------------------------------------- /gotsys/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsys/parse.y -------------------------------------------------------------------------------- /gotsys/privsep_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsys/privsep_stub.c -------------------------------------------------------------------------------- /gotsysctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysctl/Makefile -------------------------------------------------------------------------------- /gotsysctl/gotsysctl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysctl/gotsysctl.8 -------------------------------------------------------------------------------- /gotsysctl/gotsysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysctl/gotsysctl.c -------------------------------------------------------------------------------- /gotsysd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/Makefile -------------------------------------------------------------------------------- /gotsysd/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/auth.c -------------------------------------------------------------------------------- /gotsysd/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/auth.h -------------------------------------------------------------------------------- /gotsysd/gotsysd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/gotsysd.8 -------------------------------------------------------------------------------- /gotsysd/gotsysd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/gotsysd.c -------------------------------------------------------------------------------- /gotsysd/gotsysd.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/gotsysd.conf.5 -------------------------------------------------------------------------------- /gotsysd/gotsysd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/gotsysd.h -------------------------------------------------------------------------------- /gotsysd/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/helpers.c -------------------------------------------------------------------------------- /gotsysd/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/helpers.h -------------------------------------------------------------------------------- /gotsysd/imsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/imsg.c -------------------------------------------------------------------------------- /gotsysd/libexec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/Makefile.inc -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-apply-conf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-apply-conf/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-apply-conf/gotsys-apply-conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-apply-conf/gotsys-apply-conf.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-groupadd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-groupadd/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-groupadd/gotsys-groupadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-groupadd/gotsys-groupadd.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-read-conf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-read-conf/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-read-conf/gotsys-read-conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-read-conf/gotsys-read-conf.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-repo-create/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-repo-create/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-repo-create/gotsys-repo-create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-repo-create/gotsys-repo-create.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-rmkeys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-rmkeys/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-rmkeys/gotsys-rmkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-rmkeys/gotsys-rmkeys.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-sshdconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-sshdconfig/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-sshdconfig/gotsys-sshdconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-sshdconfig/gotsys-sshdconfig.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-useradd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-useradd/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-useradd/gotsys-useradd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-useradd/gotsys-useradd.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-useradd/pwd_mkdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-useradd/pwd_mkdb.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-useradd/pwd_mkdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-useradd/pwd_mkdb.h -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-userhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-userhome/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-userhome/gotsys-userhome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-userhome/gotsys-userhome.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-userkeys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-userkeys/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-userkeys/gotsys-userkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-userkeys/gotsys-userkeys.c -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-write-conf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-write-conf/Makefile -------------------------------------------------------------------------------- /gotsysd/libexec/gotsys-write-conf/gotsys-write-conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/libexec/gotsys-write-conf/gotsys-write-conf.c -------------------------------------------------------------------------------- /gotsysd/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/listen.c -------------------------------------------------------------------------------- /gotsysd/listen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/listen.h -------------------------------------------------------------------------------- /gotsysd/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/parse.y -------------------------------------------------------------------------------- /gotsysd/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/sysconf.c -------------------------------------------------------------------------------- /gotsysd/sysconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotsysd/sysconf.h -------------------------------------------------------------------------------- /gotwebd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/Makefile.am -------------------------------------------------------------------------------- /gotwebd/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/Makefile.inc -------------------------------------------------------------------------------- /gotwebd/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/auth.c -------------------------------------------------------------------------------- /gotwebd/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/config.c -------------------------------------------------------------------------------- /gotwebd/fcgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/fcgi.c -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/android-chrome-192x192.png -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/android-chrome-384x384.png -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/apple-touch-icon.png -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/browserconfig.xml -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/favicon-16x16.png -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/favicon-32x32.png -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/favicon.ico -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/got.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/got.png -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/got_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/got_large.png -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/gotweb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/gotweb.css -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/mstile-150x150.png -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/safari-pinned-tab.svg -------------------------------------------------------------------------------- /gotwebd/files/htdocs/gotwebd/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/files/htdocs/gotwebd/site.webmanifest -------------------------------------------------------------------------------- /gotwebd/got_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/got_operations.c -------------------------------------------------------------------------------- /gotwebd/gotweb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/gotweb.c -------------------------------------------------------------------------------- /gotwebd/gotwebd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/gotwebd.8 -------------------------------------------------------------------------------- /gotwebd/gotwebd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/gotwebd.c -------------------------------------------------------------------------------- /gotwebd/gotwebd.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/gotwebd.conf.5 -------------------------------------------------------------------------------- /gotwebd/gotwebd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/gotwebd.h -------------------------------------------------------------------------------- /gotwebd/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/login.c -------------------------------------------------------------------------------- /gotwebd/pages.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/pages.tmpl -------------------------------------------------------------------------------- /gotwebd/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/parse.y -------------------------------------------------------------------------------- /gotwebd/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/gotwebd/sockets.c -------------------------------------------------------------------------------- /include/got_blame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_blame.h -------------------------------------------------------------------------------- /include/got_cancel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_cancel.h -------------------------------------------------------------------------------- /include/got_commit_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_commit_graph.h -------------------------------------------------------------------------------- /include/got_compat2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_compat2.h -------------------------------------------------------------------------------- /include/got_date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_date.h -------------------------------------------------------------------------------- /include/got_dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_dial.h -------------------------------------------------------------------------------- /include/got_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_diff.h -------------------------------------------------------------------------------- /include/got_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_error.h -------------------------------------------------------------------------------- /include/got_fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_fetch.h -------------------------------------------------------------------------------- /include/got_gotconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_gotconfig.h -------------------------------------------------------------------------------- /include/got_keyword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_keyword.h -------------------------------------------------------------------------------- /include/got_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_object.h -------------------------------------------------------------------------------- /include/got_opentemp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_opentemp.h -------------------------------------------------------------------------------- /include/got_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_patch.h -------------------------------------------------------------------------------- /include/got_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_path.h -------------------------------------------------------------------------------- /include/got_privsep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_privsep.h -------------------------------------------------------------------------------- /include/got_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_reference.h -------------------------------------------------------------------------------- /include/got_repository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_repository.h -------------------------------------------------------------------------------- /include/got_repository_admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_repository_admin.h -------------------------------------------------------------------------------- /include/got_repository_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_repository_dump.h -------------------------------------------------------------------------------- /include/got_repository_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_repository_load.h -------------------------------------------------------------------------------- /include/got_send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_send.h -------------------------------------------------------------------------------- /include/got_serve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_serve.h -------------------------------------------------------------------------------- /include/got_sigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_sigs.h -------------------------------------------------------------------------------- /include/got_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_utf8.h -------------------------------------------------------------------------------- /include/got_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_version.h -------------------------------------------------------------------------------- /include/got_worktree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_worktree.h -------------------------------------------------------------------------------- /include/got_worktree_cvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/include/got_worktree_cvg.h -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/arraylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/arraylist.h -------------------------------------------------------------------------------- /lib/blame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/blame.c -------------------------------------------------------------------------------- /lib/bloom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/bloom.c -------------------------------------------------------------------------------- /lib/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/bloom.h -------------------------------------------------------------------------------- /lib/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/buf.c -------------------------------------------------------------------------------- /lib/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/buf.h -------------------------------------------------------------------------------- /lib/bufio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/bufio.c -------------------------------------------------------------------------------- /lib/bufio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/bufio.h -------------------------------------------------------------------------------- /lib/commit_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/commit_graph.c -------------------------------------------------------------------------------- /lib/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/date.c -------------------------------------------------------------------------------- /lib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/deflate.c -------------------------------------------------------------------------------- /lib/delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/delta.c -------------------------------------------------------------------------------- /lib/delta_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/delta_cache.c -------------------------------------------------------------------------------- /lib/deltify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/deltify.c -------------------------------------------------------------------------------- /lib/dial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/dial.c -------------------------------------------------------------------------------- /lib/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff.c -------------------------------------------------------------------------------- /lib/diff3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff3.c -------------------------------------------------------------------------------- /lib/diff_atomize_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_atomize_text.c -------------------------------------------------------------------------------- /lib/diff_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_debug.h -------------------------------------------------------------------------------- /lib/diff_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_internal.h -------------------------------------------------------------------------------- /lib/diff_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_main.c -------------------------------------------------------------------------------- /lib/diff_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_main.h -------------------------------------------------------------------------------- /lib/diff_myers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_myers.c -------------------------------------------------------------------------------- /lib/diff_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_output.c -------------------------------------------------------------------------------- /lib/diff_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_output.h -------------------------------------------------------------------------------- /lib/diff_output_edscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_output_edscript.c -------------------------------------------------------------------------------- /lib/diff_output_plain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_output_plain.c -------------------------------------------------------------------------------- /lib/diff_output_unidiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_output_unidiff.c -------------------------------------------------------------------------------- /lib/diff_patience.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diff_patience.c -------------------------------------------------------------------------------- /lib/diffreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/diffreg.c -------------------------------------------------------------------------------- /lib/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/dump.c -------------------------------------------------------------------------------- /lib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/error.c -------------------------------------------------------------------------------- /lib/fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/fetch.c -------------------------------------------------------------------------------- /lib/fileindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/fileindex.c -------------------------------------------------------------------------------- /lib/gitconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/gitconfig.c -------------------------------------------------------------------------------- /lib/gitproto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/gitproto.c -------------------------------------------------------------------------------- /lib/got_lib_deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_deflate.h -------------------------------------------------------------------------------- /lib/got_lib_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_delta.h -------------------------------------------------------------------------------- /lib/got_lib_delta_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_delta_cache.h -------------------------------------------------------------------------------- /lib/got_lib_deltify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_deltify.h -------------------------------------------------------------------------------- /lib/got_lib_dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_dial.h -------------------------------------------------------------------------------- /lib/got_lib_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_diff.h -------------------------------------------------------------------------------- /lib/got_lib_fileindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_fileindex.h -------------------------------------------------------------------------------- /lib/got_lib_gitconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_gitconfig.h -------------------------------------------------------------------------------- /lib/got_lib_gitproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_gitproto.h -------------------------------------------------------------------------------- /lib/got_lib_gotconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_gotconfig.h -------------------------------------------------------------------------------- /lib/got_lib_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_hash.h -------------------------------------------------------------------------------- /lib/got_lib_inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_inflate.h -------------------------------------------------------------------------------- /lib/got_lib_lockfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_lockfile.h -------------------------------------------------------------------------------- /lib/got_lib_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_object.h -------------------------------------------------------------------------------- /lib/got_lib_object_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_object_cache.h -------------------------------------------------------------------------------- /lib/got_lib_object_create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_object_create.h -------------------------------------------------------------------------------- /lib/got_lib_object_idcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_object_idcache.h -------------------------------------------------------------------------------- /lib/got_lib_object_idset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_object_idset.h -------------------------------------------------------------------------------- /lib/got_lib_object_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_object_parse.h -------------------------------------------------------------------------------- /lib/got_lib_object_qid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_object_qid.h -------------------------------------------------------------------------------- /lib/got_lib_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_pack.h -------------------------------------------------------------------------------- /lib/got_lib_pack_create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_pack_create.h -------------------------------------------------------------------------------- /lib/got_lib_pack_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_pack_index.h -------------------------------------------------------------------------------- /lib/got_lib_pkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_pkt.h -------------------------------------------------------------------------------- /lib/got_lib_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_poll.h -------------------------------------------------------------------------------- /lib/got_lib_privsep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_privsep.h -------------------------------------------------------------------------------- /lib/got_lib_ratelimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_ratelimit.h -------------------------------------------------------------------------------- /lib/got_lib_repository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_repository.h -------------------------------------------------------------------------------- /lib/got_lib_worktree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_worktree.h -------------------------------------------------------------------------------- /lib/got_lib_worktree_cvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/got_lib_worktree_cvg.h -------------------------------------------------------------------------------- /lib/gotconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/gotconfig.c -------------------------------------------------------------------------------- /lib/gotd_imsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/gotd_imsg.c -------------------------------------------------------------------------------- /lib/gotsys_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/gotsys_conf.c -------------------------------------------------------------------------------- /lib/gotsys_imsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/gotsys_imsg.c -------------------------------------------------------------------------------- /lib/gotsys_uidset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/gotsys_uidset.c -------------------------------------------------------------------------------- /lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/hash.c -------------------------------------------------------------------------------- /lib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/inflate.c -------------------------------------------------------------------------------- /lib/keyword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/keyword.c -------------------------------------------------------------------------------- /lib/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/load.c -------------------------------------------------------------------------------- /lib/lockfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/lockfile.c -------------------------------------------------------------------------------- /lib/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/log.c -------------------------------------------------------------------------------- /lib/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/log.h -------------------------------------------------------------------------------- /lib/murmurhash2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/murmurhash2.c -------------------------------------------------------------------------------- /lib/murmurhash2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/murmurhash2.h -------------------------------------------------------------------------------- /lib/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/object.c -------------------------------------------------------------------------------- /lib/object_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/object_cache.c -------------------------------------------------------------------------------- /lib/object_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/object_create.c -------------------------------------------------------------------------------- /lib/object_idset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/object_idset.c -------------------------------------------------------------------------------- /lib/object_open_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/object_open_io.c -------------------------------------------------------------------------------- /lib/object_open_privsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/object_open_privsep.c -------------------------------------------------------------------------------- /lib/object_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/object_parse.c -------------------------------------------------------------------------------- /lib/object_qid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/object_qid.c -------------------------------------------------------------------------------- /lib/opentemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/opentemp.c -------------------------------------------------------------------------------- /lib/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/pack.c -------------------------------------------------------------------------------- /lib/pack_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/pack_create.c -------------------------------------------------------------------------------- /lib/pack_create_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/pack_create_io.c -------------------------------------------------------------------------------- /lib/pack_create_privsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/pack_create_privsep.c -------------------------------------------------------------------------------- /lib/pack_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/pack_index.c -------------------------------------------------------------------------------- /lib/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/patch.c -------------------------------------------------------------------------------- /lib/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/path.c -------------------------------------------------------------------------------- /lib/pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/pkt.c -------------------------------------------------------------------------------- /lib/pollfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/pollfd.c -------------------------------------------------------------------------------- /lib/privsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/privsep.c -------------------------------------------------------------------------------- /lib/ratelimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/ratelimit.c -------------------------------------------------------------------------------- /lib/rcsutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/rcsutil.c -------------------------------------------------------------------------------- /lib/rcsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/rcsutil.h -------------------------------------------------------------------------------- /lib/read_gitconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/read_gitconfig.c -------------------------------------------------------------------------------- /lib/read_gitconfig_privsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/read_gitconfig_privsep.c -------------------------------------------------------------------------------- /lib/read_gotconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/read_gotconfig.c -------------------------------------------------------------------------------- /lib/read_gotconfig_privsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/read_gotconfig_privsep.c -------------------------------------------------------------------------------- /lib/reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/reference.c -------------------------------------------------------------------------------- /lib/reference_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/reference_parse.c -------------------------------------------------------------------------------- /lib/repository.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/repository.c -------------------------------------------------------------------------------- /lib/repository_admin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/repository_admin.c -------------------------------------------------------------------------------- /lib/repository_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/repository_init.c -------------------------------------------------------------------------------- /lib/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/send.c -------------------------------------------------------------------------------- /lib/serve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/serve.c -------------------------------------------------------------------------------- /lib/sigs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/sigs.c -------------------------------------------------------------------------------- /lib/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/utf8.c -------------------------------------------------------------------------------- /lib/worktree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/worktree.c -------------------------------------------------------------------------------- /lib/worktree_cvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/worktree_cvg.c -------------------------------------------------------------------------------- /lib/worktree_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/lib/worktree_open.c -------------------------------------------------------------------------------- /libexec/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/Makefile.am -------------------------------------------------------------------------------- /libexec/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/Makefile.inc -------------------------------------------------------------------------------- /libexec/got-fetch-http/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-fetch-http/Makefile.am -------------------------------------------------------------------------------- /libexec/got-fetch-http/got-fetch-http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-fetch-http/got-fetch-http.c -------------------------------------------------------------------------------- /libexec/got-fetch-pack/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-fetch-pack/Makefile.am -------------------------------------------------------------------------------- /libexec/got-fetch-pack/got-fetch-pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-fetch-pack/got-fetch-pack.c -------------------------------------------------------------------------------- /libexec/got-index-pack/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-index-pack/Makefile.am -------------------------------------------------------------------------------- /libexec/got-index-pack/got-index-pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-index-pack/got-index-pack.c -------------------------------------------------------------------------------- /libexec/got-read-blob/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-blob/Makefile.am -------------------------------------------------------------------------------- /libexec/got-read-blob/got-read-blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-blob/got-read-blob.c -------------------------------------------------------------------------------- /libexec/got-read-commit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-commit/Makefile.am -------------------------------------------------------------------------------- /libexec/got-read-commit/got-read-commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-commit/got-read-commit.c -------------------------------------------------------------------------------- /libexec/got-read-gitconfig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-gitconfig/Makefile.am -------------------------------------------------------------------------------- /libexec/got-read-gitconfig/got-read-gitconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-gitconfig/got-read-gitconfig.c -------------------------------------------------------------------------------- /libexec/got-read-gotconfig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-gotconfig/Makefile.am -------------------------------------------------------------------------------- /libexec/got-read-gotconfig/got-read-gotconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-gotconfig/got-read-gotconfig.c -------------------------------------------------------------------------------- /libexec/got-read-gotconfig/gotconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-gotconfig/gotconfig.h -------------------------------------------------------------------------------- /libexec/got-read-gotconfig/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-gotconfig/parse.y -------------------------------------------------------------------------------- /libexec/got-read-object/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-object/Makefile.am -------------------------------------------------------------------------------- /libexec/got-read-object/got-read-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-object/got-read-object.c -------------------------------------------------------------------------------- /libexec/got-read-pack/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-pack/Makefile.am -------------------------------------------------------------------------------- /libexec/got-read-pack/got-read-pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-pack/got-read-pack.c -------------------------------------------------------------------------------- /libexec/got-read-patch/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-patch/Makefile.am -------------------------------------------------------------------------------- /libexec/got-read-patch/got-read-patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-patch/got-read-patch.c -------------------------------------------------------------------------------- /libexec/got-read-tag/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-tag/Makefile.am -------------------------------------------------------------------------------- /libexec/got-read-tag/got-read-tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-tag/got-read-tag.c -------------------------------------------------------------------------------- /libexec/got-read-tree/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-tree/Makefile.am -------------------------------------------------------------------------------- /libexec/got-read-tree/got-read-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-read-tree/got-read-tree.c -------------------------------------------------------------------------------- /libexec/got-send-pack/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-send-pack/Makefile.am -------------------------------------------------------------------------------- /libexec/got-send-pack/got-send-pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/libexec/got-send-pack/got-send-pack.c -------------------------------------------------------------------------------- /maintscripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/maintscripts/README.md -------------------------------------------------------------------------------- /maintscripts/mk-portable-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/maintscripts/mk-portable-release.sh -------------------------------------------------------------------------------- /maintscripts/sync-upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/maintscripts/sync-upstream.sh -------------------------------------------------------------------------------- /regress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/Makefile -------------------------------------------------------------------------------- /regress/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/Makefile.inc -------------------------------------------------------------------------------- /regress/cmdline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/Makefile -------------------------------------------------------------------------------- /regress/cmdline/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/Makefile.am -------------------------------------------------------------------------------- /regress/cmdline/add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/add.sh -------------------------------------------------------------------------------- /regress/cmdline/backout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/backout.sh -------------------------------------------------------------------------------- /regress/cmdline/blame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/blame.sh -------------------------------------------------------------------------------- /regress/cmdline/branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/branch.sh -------------------------------------------------------------------------------- /regress/cmdline/cat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/cat.sh -------------------------------------------------------------------------------- /regress/cmdline/checkout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/checkout.sh -------------------------------------------------------------------------------- /regress/cmdline/cherrypick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/cherrypick.sh -------------------------------------------------------------------------------- /regress/cmdline/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/cleanup.sh -------------------------------------------------------------------------------- /regress/cmdline/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/clone.sh -------------------------------------------------------------------------------- /regress/cmdline/commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/commit.sh -------------------------------------------------------------------------------- /regress/cmdline/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/common.sh -------------------------------------------------------------------------------- /regress/cmdline/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/diff.sh -------------------------------------------------------------------------------- /regress/cmdline/dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/dump.sh -------------------------------------------------------------------------------- /regress/cmdline/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/fetch.sh -------------------------------------------------------------------------------- /regress/cmdline/histedit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/histedit.sh -------------------------------------------------------------------------------- /regress/cmdline/http-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/http-server -------------------------------------------------------------------------------- /regress/cmdline/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/import.sh -------------------------------------------------------------------------------- /regress/cmdline/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/init.sh -------------------------------------------------------------------------------- /regress/cmdline/integrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/integrate.sh -------------------------------------------------------------------------------- /regress/cmdline/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/load.sh -------------------------------------------------------------------------------- /regress/cmdline/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/log.sh -------------------------------------------------------------------------------- /regress/cmdline/memleak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/memleak.sh -------------------------------------------------------------------------------- /regress/cmdline/merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/merge.sh -------------------------------------------------------------------------------- /regress/cmdline/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/pack.sh -------------------------------------------------------------------------------- /regress/cmdline/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/patch.sh -------------------------------------------------------------------------------- /regress/cmdline/rebase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/rebase.sh -------------------------------------------------------------------------------- /regress/cmdline/ref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/ref.sh -------------------------------------------------------------------------------- /regress/cmdline/revert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/revert.sh -------------------------------------------------------------------------------- /regress/cmdline/rm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/rm.sh -------------------------------------------------------------------------------- /regress/cmdline/send.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/send.sh -------------------------------------------------------------------------------- /regress/cmdline/stage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/stage.sh -------------------------------------------------------------------------------- /regress/cmdline/status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/status.sh -------------------------------------------------------------------------------- /regress/cmdline/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/tag.sh -------------------------------------------------------------------------------- /regress/cmdline/tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/tree.sh -------------------------------------------------------------------------------- /regress/cmdline/unstage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/unstage.sh -------------------------------------------------------------------------------- /regress/cmdline/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/cmdline/update.sh -------------------------------------------------------------------------------- /regress/delta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/delta/Makefile -------------------------------------------------------------------------------- /regress/delta/delta_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/delta/delta_test.c -------------------------------------------------------------------------------- /regress/deltify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/deltify/Makefile -------------------------------------------------------------------------------- /regress/deltify/deltify_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/deltify/deltify_test.c -------------------------------------------------------------------------------- /regress/fetch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/fetch/Makefile -------------------------------------------------------------------------------- /regress/fetch/fetch_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/fetch/fetch_test.c -------------------------------------------------------------------------------- /regress/gotd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/.gitignore -------------------------------------------------------------------------------- /regress/gotd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/Makefile -------------------------------------------------------------------------------- /regress/gotd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/README -------------------------------------------------------------------------------- /regress/gotd/check_test_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/check_test_repo.sh -------------------------------------------------------------------------------- /regress/gotd/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/common.sh -------------------------------------------------------------------------------- /regress/gotd/connection_limit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/connection_limit.sh -------------------------------------------------------------------------------- /regress/gotd/email_notification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/email_notification.sh -------------------------------------------------------------------------------- /regress/gotd/http-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/http-server -------------------------------------------------------------------------------- /regress/gotd/http_notification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/http_notification.sh -------------------------------------------------------------------------------- /regress/gotd/http_notification_hmac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/http_notification_hmac.sh -------------------------------------------------------------------------------- /regress/gotd/large_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/large_files.sh -------------------------------------------------------------------------------- /regress/gotd/prepare_large_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/prepare_large_files.sh -------------------------------------------------------------------------------- /regress/gotd/prepare_test_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/prepare_test_repo.sh -------------------------------------------------------------------------------- /regress/gotd/repo_read.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/repo_read.sh -------------------------------------------------------------------------------- /regress/gotd/repo_read_access_denied.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/repo_read_access_denied.sh -------------------------------------------------------------------------------- /regress/gotd/repo_write.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/repo_write.sh -------------------------------------------------------------------------------- /regress/gotd/repo_write_empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/repo_write_empty.sh -------------------------------------------------------------------------------- /regress/gotd/repo_write_protected.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/repo_write_protected.sh -------------------------------------------------------------------------------- /regress/gotd/repo_write_readonly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/repo_write_readonly.sh -------------------------------------------------------------------------------- /regress/gotd/request_bad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/request_bad.sh -------------------------------------------------------------------------------- /regress/gotd/smtp-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/smtp-server -------------------------------------------------------------------------------- /regress/gotd/test_git_interop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotd/test_git_interop.sh -------------------------------------------------------------------------------- /regress/gotsysd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotsysd/.gitignore -------------------------------------------------------------------------------- /regress/gotsysd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotsysd/Makefile -------------------------------------------------------------------------------- /regress/gotsysd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotsysd/README -------------------------------------------------------------------------------- /regress/gotsysd/build-got.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotsysd/build-got.sh -------------------------------------------------------------------------------- /regress/gotsysd/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotsysd/common.sh -------------------------------------------------------------------------------- /regress/gotsysd/http-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotsysd/http-server -------------------------------------------------------------------------------- /regress/gotsysd/test_gotsysd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotsysd/test_gotsysd.sh -------------------------------------------------------------------------------- /regress/gotsysd/test_gotwebd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotsysd/test_gotwebd.sh -------------------------------------------------------------------------------- /regress/gotwebd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/Makefile -------------------------------------------------------------------------------- /regress/gotwebd/action_blame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/action_blame.html -------------------------------------------------------------------------------- /regress/gotwebd/action_commits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/action_commits.html -------------------------------------------------------------------------------- /regress/gotwebd/action_diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/action_diff.html -------------------------------------------------------------------------------- /regress/gotwebd/action_patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/action_patch.html -------------------------------------------------------------------------------- /regress/gotwebd/action_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/action_summary.html -------------------------------------------------------------------------------- /regress/gotwebd/action_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/action_tree.html -------------------------------------------------------------------------------- /regress/gotwebd/commits_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/commits_page.html -------------------------------------------------------------------------------- /regress/gotwebd/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/common.sh -------------------------------------------------------------------------------- /regress/gotwebd/gotwebd_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/gotwebd_test.c -------------------------------------------------------------------------------- /regress/gotwebd/prepare_test_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/prepare_test_repo.sh -------------------------------------------------------------------------------- /regress/gotwebd/test_gotwebd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/test_gotwebd.sh -------------------------------------------------------------------------------- /regress/gotwebd/test_gotwebd_paginate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/gotwebd/test_gotwebd_paginate.sh -------------------------------------------------------------------------------- /regress/idset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/idset/Makefile -------------------------------------------------------------------------------- /regress/idset/idset_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/idset/idset_test.c -------------------------------------------------------------------------------- /regress/path/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/path/Makefile -------------------------------------------------------------------------------- /regress/path/path_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/path/path_test.c -------------------------------------------------------------------------------- /regress/secrets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/secrets/.gitignore -------------------------------------------------------------------------------- /regress/secrets/01.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/secrets/01.conf -------------------------------------------------------------------------------- /regress/secrets/01.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/secrets/01.exp -------------------------------------------------------------------------------- /regress/secrets/02.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/secrets/02.conf -------------------------------------------------------------------------------- /regress/secrets/02.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/secrets/02.exp -------------------------------------------------------------------------------- /regress/secrets/03.conf: -------------------------------------------------------------------------------- 1 | auth mochi user flan password "foo 2 | -------------------------------------------------------------------------------- /regress/secrets/04.conf: -------------------------------------------------------------------------------- 1 | hmac mochi foo\ 2 | -------------------------------------------------------------------------------- /regress/secrets/05.conf: -------------------------------------------------------------------------------- 1 | hmac mochi foo\ 2 | -------------------------------------------------------------------------------- /regress/secrets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/secrets/Makefile -------------------------------------------------------------------------------- /regress/secrets/secrets-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/secrets/secrets-parser.c -------------------------------------------------------------------------------- /regress/template/00-empty.tmpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/template/01-noise-only.tmpl: -------------------------------------------------------------------------------- 1 | only 2 | noise 3 | -------------------------------------------------------------------------------- /regress/template/02-only-verbatim.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/02-only-verbatim.tmpl -------------------------------------------------------------------------------- /regress/template/02.expected: -------------------------------------------------------------------------------- 1 | hello, world! 2 | -------------------------------------------------------------------------------- /regress/template/03-block.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/03-block.tmpl -------------------------------------------------------------------------------- /regress/template/03.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/03.expected -------------------------------------------------------------------------------- /regress/template/04-flow.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/04-flow.tmpl -------------------------------------------------------------------------------- /regress/template/04.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/04.expected -------------------------------------------------------------------------------- /regress/template/05-loop.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/05-loop.tmpl -------------------------------------------------------------------------------- /regress/template/05.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/05.expected -------------------------------------------------------------------------------- /regress/template/06-escape.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/06-escape.tmpl -------------------------------------------------------------------------------- /regress/template/06.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/06.expected -------------------------------------------------------------------------------- /regress/template/07-printf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/07-printf.tmpl -------------------------------------------------------------------------------- /regress/template/07.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/07.expected -------------------------------------------------------------------------------- /regress/template/08-dangling.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/08-dangling.tmpl -------------------------------------------------------------------------------- /regress/template/08.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/08.expected -------------------------------------------------------------------------------- /regress/template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/Makefile -------------------------------------------------------------------------------- /regress/template/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/lists.h -------------------------------------------------------------------------------- /regress/template/runbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/runbase.c -------------------------------------------------------------------------------- /regress/template/runlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/template/runlist.c -------------------------------------------------------------------------------- /regress/tog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/tog/Makefile -------------------------------------------------------------------------------- /regress/tog/blame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/tog/blame.sh -------------------------------------------------------------------------------- /regress/tog/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/tog/common.sh -------------------------------------------------------------------------------- /regress/tog/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/tog/diff.sh -------------------------------------------------------------------------------- /regress/tog/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/tog/log.sh -------------------------------------------------------------------------------- /regress/tog/ref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/tog/ref.sh -------------------------------------------------------------------------------- /regress/tog/tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/regress/tog/tree.sh -------------------------------------------------------------------------------- /template/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/Makefile.am -------------------------------------------------------------------------------- /template/Makefile.common.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/Makefile.common.in -------------------------------------------------------------------------------- /template/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/configure.ac -------------------------------------------------------------------------------- /template/got_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/got_compat.h -------------------------------------------------------------------------------- /template/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/parse.y -------------------------------------------------------------------------------- /template/template.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/template.1 -------------------------------------------------------------------------------- /template/template.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/template.7 -------------------------------------------------------------------------------- /template/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/template.c -------------------------------------------------------------------------------- /template/tmpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/tmpl.c -------------------------------------------------------------------------------- /template/tmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/template/tmpl.h -------------------------------------------------------------------------------- /tog/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/tog/Makefile.am -------------------------------------------------------------------------------- /tog/tog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/tog/tog.1 -------------------------------------------------------------------------------- /tog/tog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/tog/tog.c -------------------------------------------------------------------------------- /util/got-build-regress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/util/got-build-regress.sh -------------------------------------------------------------------------------- /util/got-portable-ver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/util/got-portable-ver.sh -------------------------------------------------------------------------------- /util/uncompress-loose-object.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameoftrees/got-portable/HEAD/util/uncompress-loose-object.sh --------------------------------------------------------------------------------