The actual GitHub Desktop app, packaged for Linux via Flatpak. It works surprisingly well.
(cron job)
Over the past year, I’ve pieced together a GitHub workflow on Linux that feels native, visual when I need it, and ridiculously fast. Here’s what actually works. Let’s be honest—the terminal on Linux is where Git shines. But instead of typing git status 50 times a day, I use:
#!/bin/bash make test && git push origin HEAD
The actual GitHub Desktop app, packaged for Linux via Flatpak. It works surprisingly well.
(cron job)
Over the past year, I’ve pieced together a GitHub workflow on Linux that feels native, visual when I need it, and ridiculously fast. Here’s what actually works. Let’s be honest—the terminal on Linux is where Git shines. But instead of typing git status 50 times a day, I use:
#!/bin/bash make test && git push origin HEAD