rlipscombe
When I use Mix.install with a git dependency, using git@github.com:... how do I change the SSH identity used?
I’ve got two Github accounts – work and personal, and usually I’d specify GIT_SSH_COMMAND=ssh -i path/to/private_key -o IdentitiesOnly=yes.
This works fine when running, say, iex and Mix.install in my terminal. When I try the same in Livebook, I get the following error:
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
I’ve tried editing .livebookdesktop.sh – and the env var is set properly according to System.get_env; didn’t work.
I’ve tried using system_env: %{"GIT_SSH_COMMAND" => "ssh -i ... in Mix.install; didn’t work.
How do I get Mix.install to use alternate SSH identities inside Livebook?
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex











Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
Why is using the
https://...links not an option, by the way? You can just export theGITHUB_TOKENenv var and it should just work. At least it does for me locally in the OS, locally in a Docker container, and in GitHub’s workers (with the.insteadOfgit setting on top).rlipscombe
I don’t want the extra step involved in managing a personal access token.
dimitarvp
Is that adding more friction than providing the extra step of a private key and the command to use it? Your call, seems to me the token would be a touch easier.
rlipscombe
I’ve already got the extra private key, so: yes.
Moreover, in order to apply the
.insteadOfoption, I need a configuration file. And, because I’m keeping my personal and work configurations separate, it’s a separate configuration file.And, if I could persuade
Mix.installto use a separate configuration file, I wouldn’t need the env var – because the configuration file already specifiescore.sshCommand, but that doesn’t seem to do anything here either.josevalim
We don’t do anything special here, so my only suspicion is that the environment variable is not making its way to
git. You could try creating a simple git script, put it on top of your $PATH, and callenvto inspect all of the environment variables. If theGIT_SSH_COMMANDyou set at .livebookdesktop.sh is missing, that would explain it.rlipscombe
I did this. The
GIT_SSH_COMMANDenvironment variable is present, but seems to be ignored by the realgitcommand.Ah! I wonder whether it’s because it can’t talk to the running ssh agent, so it can’t unlock the private key…?
rlipscombe
Yes, probably this.
System.get_env()includes"SSH_AUTH_SOCK" => "/private/tmp/com.apple.launchd.BlahBlah/Listeners".This is not the
SSH_AUTH_SOCKthat my shell’s using –SSH_AUTH_SOCK=/var/folders/bunch/of/letters/and/numbers/agent.1234I’ve got two
ssh-agentprocesses running, and Livebook’s talking to the one that doesn’t have my keys loaded.I wonder how to get
oh-my-zshto talk to the launchd-started one, instead of starting a new one…? That’s a problem for a different forum, however.Thanks for the pointers.
rlipscombe
Summary:
Mix.installuses thegitcommand normally, so environment variables and configuration settings should just work.ssh-agentwith those keys.ssh-agentwith a login script, etc., you’ve probably got more than onessh-agentrunning.launchd-startedssh-agent.