I cannot even click on the commit history of a GitHub repo on the web, it seems to be some sort of bloated react interface for what amounts to an excruciatingly slow `git log`.
Cloning the entire repo is not feasible unless I know in advance that the repo is small, but I cannot know that unless I browse the log and directory beforehand.
I cannot search Google for advanced git commands, as Google times out 90% of the time, while 9% of the time it sends me to a captcha which is even more bloated to load and times out again.
And remember for things like looking up git commands or even a lot of your dependency documentation, you do not need a web browser. Git comes with manpages, many libraries will have docs in .md or whatever in them.
elinks https://github.com/arise-project
- github cli (https://cli.github.com/manual/)
- github tui (https://github.com/chshersh/github-tui)
- another github tui (https://github.com/skanehira/github-tui)
- github cli extension (https://github.com/jrnxf/gh-eco)
Or you could build a custom one with the github api: https://docs.github.com/en/rest
Hope you find a solution.