| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-04-28 | git: Update to 2.49.0 | Michael Forney | |
| 2024-03-09 | git: bump to 2.44.0 | Randy Palamar | |
| 2023-10-04 | git: update to 2.42.0 | Randy Palamar | |
| 2022-09-09 | git: Update to 2.37.3 | Michael Forney | |
| 2021-11-17 | git: Update to 2.34.0 | Michael Forney | |
| 2021-06-27 | git: Update to 2.32.0 | Michael Forney | |
| 2021-03-02 | git: Update to 2.30.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-06-02 | git: Update to 2.27.0 | Michael Forney | |
| 2020-01-13 | git: Update to 2.25.0 | Michael Forney | |
| 2019-06-10 | git: Update to 2.22.0 | Michael Forney | |
| 2018-12-23 | git: Update to 2.20.1 | Michael Forney | |
| 2018-09-29 | git: Update to 2.19.0 | Michael Forney | |
| 2018-08-11 | git: Update to 2.18.0 | Michael Forney | |
| 2017-02-25 | git: Update to 2.12.0 | Michael Forney | |
| 2017-02-07 | git: Update to 2.11.1 | 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 | |||
