summaryrefslogtreecommitdiff
path: root/pkg/git/patch
AgeCommit message (Collapse)Author
2021-11-17git: Update to 2.34.0Michael Forney
2021-04-18git: Use awk instead of perl for request-pullMichael Forney
2021-04-17git: Update to 2.31.1Michael Forney
2020-10-19git: Update to 2.29.0Michael Forney
Installation of links in git-core is now optional via SKIP_DASHED_BUILT_INS, so we choose to skip them as well.
2020-08-04git: Update to 2.28.0Michael Forney
2020-06-30git: Enable add.interactive.usebuiltin by defaultMichael Forney
We don't have perl, so this allows usage of `git add -i` by default.
2020-06-22git: Fix bug with submodule summaryMichael Forney
2020-02-01git: Remove patch avoiding pointer to int conversion in initializerMichael Forney
This is not valid ISO C, but cproc now supports this.
2020-01-13git: Update to 2.25.0Michael Forney
2019-11-04git: Update to 2.24.0Michael Forney
2019-08-16git: Update to 2.23.0Michael Forney
2019-08-13git: Update to 2.22.1Michael Forney
2019-06-21git: Avoid casts of string literal to integer in initializersMichael Forney
2017-08-10git: Install built-in symlinks in GIT_EXEC_DIRMichael Forney
These are required for git aliases to work. I don't use those, but others might.
2017-08-10git: Update to 2.14.0Michael Forney
2017-05-10git: Update to 2.13.0Michael Forney
2017-02-25git: Update to 2.12.0Michael Forney
2016-12-13Move to flat package hierarchyMichael Forney
Note to self: never try to move submodules again To migrate your existing submodules (more or less): set -x set -e mkdir .git/modules/pkg for old in */*/src ; do new="pkg/${old#*/}" if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then continue fi git -C ".git/modules/$old" config core.worktree "../../../../../$new" rmdir "$new" mv "$old" "$new" sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp" mv "$new/.git.tmp" "$new/.git" mkdir ".git/modules/${new%/src}" mv ".git/modules/$old" ".git/modules/$new" rm "${old%/src}"/*.ninja mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/" rmdir "${old%/src}" || true done sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp mv .git/config.tmp .git/config