podman --version
podman version 5.0.1
tilt version
v0.33.12, built 2024-03-28start Kind with a local registry. Just use the regular Kind with registry script
| GH_USER=itroyano | |
| find . -maxdepth 3 -name .git -type d | rev | cut -c 6- | rev | cut -c 2- | xargs -I {} gh repo sync $GH_USER{} -b main | |
| find . -maxdepth 3 -name .git -type d | rev | cut -c 6- | rev | xargs -I {} git -C {} pull |
podman --version
podman version 5.0.1
tilt version
v0.33.12, built 2024-03-28start Kind with a local registry. Just use the regular Kind with registry script
Picking the right architecture = Picking the right battles + Managing trade-offs
| In UI create a fork. | |
| git clone <fork url> | |
| git remote add upstream <url of the original repo I forked from> # Define what is the upstream | |
| git config --global pull.rebase true # Set the local repository to rebase on pull | |
| git branch --set-upstream-to upstream/main # Set local main to track upstream | |
| git checkout <local branch> |