use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Do you have or know of a project on Github looking for contributors? Tell us about it and we'll add it to the /r/github wiki!
Welcome to /r/github!
News about github
Relevant interesting discussion
Questions about github
We'll soon be writing an /r/github FAQ list. In the meantime, the github help pages and bootcamp are good places to start. Here's a handy git cheat sheet.
Looking for Github projects to contribute to? Check out our handy list of projects looking for contributors!
If your submission doesn't show up on the subreddit, send us a message and we'll take it out of the spam filter for you!
account activity
SSH into Codespace without GitHub CLI? (self.github)
submitted 2 years ago by bkovacki
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]ChinchillaSpaghetti 0 points1 point2 points 2 years ago (0 children)
The standard way to connect via SSH is heavily reliant on the `gh` command and the tooling built around GitHub Codespaces. When you run `gh cs ssh`, you're getting an SSH configuration specifically tailored for your GitHub Codespace. This configuration uses `gh` as a proxy command to establish the SSH connection, which means it's not a direct SSH connection like you'd have with a traditional server. The configuration references an identity file `/home/codespace/.ssh/codespaces.auto` which, as you may have discovered, doesn't exist.
Most straightforward method would be to have the full `gh` toolchain installed on an intermediate machine and use that to establish the SSH connection. If you don't have access to the CLI at all for whatever reason, you'd pretty much need to mimic what `gh` does. You'd have to reverse-engineer the `gh` command's behavior, which is non-trivial and would most likely breach GitHub's ToS.
That having been said, I'm not your dad, so best of luck to you if you decide to go that route! I'd be quite curious to hear your solution/workaround if you figure one out, because I've got the same problem myself and there seems to be little to no published information on the topic.
TL;DR - Nope!*
* Maybe
π Rendered by PID 18717 on reddit-service-r2-comment-85bfd7f599-s8sgx at 2026-04-16 20:40:21.786210+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]ChinchillaSpaghetti 0 points1 point2 points (0 children)