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