Skip to content

Instantly share code, notes, and snippets.

View josefheidler's full-sized avatar
🏠
Working from home

Josef Heidler josefheidler

🏠
Working from home
View GitHub Profile
@josefheidler
josefheidler / uv: update all packages
Last active April 23, 2025 14:25
UV: Update all packages to newest version
uv lock --upgrade
uv sync --all-groups
@josefheidler
josefheidler / git: checkout to remote branch
Last active April 23, 2025 14:25
GIT: Checkout to Remote Branch
git fetch
git branch -a
git checkout -b your-branch remotes/origin/your-branch