![]() |
√ Программы, √ Сайты, √ Исходники, √ C++, √ Библиотеки, √ Хостинг, √ Домены
|
|
gh repo list --limit 100 | fzf --preview 'gh repo view 1' | cut -f1 | xargs gh repo clone Run it, fuzzy-find any of your repos, hit Enter, and it’s cloned. Using GitHub on Linux isn’t about “making do” without the official desktop app. It’s about building a workflow that blends terminal speed, GUI convenience when needed, and Linux-native automation. The CLI-first approach, paired with tools like gh and a solid GUI client for complex diffs, honestly beats the official GitHub Desktop experience on any OS.
#!/bin/bash make test && git push origin HEAD desktop github linux
From the terminal to native desktop apps—what actually works on a Linux dev desktop. If you’ve used GitHub for more than a week, you know the basics: git add , git commit , git push . But on Linux, the experience can go much deeper than that. While macOS and Windows get polished GitHub Desktop clients, Linux users often end up living in the terminal—which isn’t a bad thing, but it’s not the only thing. gh repo list --limit 100 | fzf --preview
gh repo list --limit 100 | fzf --preview 'gh repo view 1' | cut -f1 | xargs gh repo clone Run it, fuzzy-find any of your repos, hit Enter, and it’s cloned. Using GitHub on Linux isn’t about “making do” without the official desktop app. It’s about building a workflow that blends terminal speed, GUI convenience when needed, and Linux-native automation. The CLI-first approach, paired with tools like gh and a solid GUI client for complex diffs, honestly beats the official GitHub Desktop experience on any OS. #!/bin/bash make test && git push origin HEAD From the terminal to native desktop apps—what actually works on a Linux dev desktop. If you’ve used GitHub for more than a week, you know the basics: git add , git commit , git push . But on Linux, the experience can go much deeper than that. While macOS and Windows get polished GitHub Desktop clients, Linux users often end up living in the terminal—which isn’t a bad thing, but it’s not the only thing. |