Migrated to Linux and still under the process of recreating an enviro where I'm as productive as I was on Windows. Almost there with Git. Still got to find a simple yet rather complete graphic editing tool to replace a SUPER old version of Paint Shop Pro. So far my go-to solution is photopea.com
My favorite Git alias
My favorite git alias: gcm to git checkout main|master, fetch, and pull < View plain text > bash # checkout to default branch gcm() { git fetch && git checkout $(git remote show origin | sed -n '/HEAD branch/s/.*: //p') } (Put this in your .bashrc or something)