| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-04-28 | git: Update to 2.49.0 | Michael Forney | |
| 2022-09-09 | git: Update to 2.37.3 | Michael Forney | |
| 2021-12-22 | git: Update to 2.34.1 | Michael Forney | |
| 2021-11-17 | git: Update to 2.34.0 | Michael Forney | |
| 2021-04-18 | git: Use awk instead of perl for request-pull | Michael Forney | |
| 2021-04-17 | git: Update to 2.31.1 | Michael Forney | |
| 2020-10-19 | git: Update to 2.29.0 | Michael 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-04 | git: Update to 2.28.0 | Michael Forney | |
| 2020-06-30 | git: Enable add.interactive.usebuiltin by default | Michael Forney | |
| We don't have perl, so this allows usage of `git add -i` by default. | |||
| 2020-06-22 | git: Fix bug with submodule summary | Michael Forney | |
| 2020-02-01 | git: Remove patch avoiding pointer to int conversion in initializer | Michael Forney | |
| This is not valid ISO C, but cproc now supports this. | |||
| 2020-01-13 | git: Update to 2.25.0 | Michael Forney | |
| 2019-11-04 | git: Update to 2.24.0 | Michael Forney | |
| 2019-08-16 | git: Update to 2.23.0 | Michael Forney | |
| 2019-08-13 | git: Update to 2.22.1 | Michael Forney | |
| 2019-06-21 | git: Avoid casts of string literal to integer in initializers | Michael Forney | |
| 2017-08-10 | git: Install built-in symlinks in GIT_EXEC_DIR | Michael Forney | |
| These are required for git aliases to work. I don't use those, but others might. | |||
| 2017-08-10 | git: Update to 2.14.0 | Michael Forney | |
| 2017-05-10 | git: Update to 2.13.0 | Michael Forney | |
| 2017-02-25 | git: Update to 2.12.0 | Michael Forney | |
| 2016-12-13 | Move to flat package hierarchy | Michael 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 | |||
