| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-02-07 | file: 5.45 | hovercats | |
| 2022-09-08 | file: Update to 5.42 | Michael Forney | |
| 2021-11-17 | file: Update to 5.41 | Michael Forney | |
| 2021-04-13 | file: Update to 5.40 | Michael Forney | |
| 2020-06-16 | file: Update to 5.39 | Michael Forney | |
| 2019-12-20 | file: Update to 5.38 | Michael Forney | |
| 2019-05-22 | file: Update to 5.37 | Michael Forney | |
| 2019-03-03 | file: Update to 5.36 | Michael Forney | |
| 2018-11-03 | file: Update to 5.35 | Michael Forney | |
| 2018-08-11 | file: Update to 5.34 | Michael Forney | |
| 2018-04-17 | file: Update to 5.33 | Michael Forney | |
| 2017-09-03 | file: Update to 5.32 | Michael Forney | |
| 2017-05-28 | file: Update to 5.31 | Michael Forney | |
| 2017-02-10 | file: Update to 5.30 | 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 | |||
