Feature: Prompt for SSH key passphrase during commit/push/PR #6759
pantharshit007
started this conversation in
Ideas
Replies: 2 comments
|
0 replies
|
Please, this absolutely must be added it's so important. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Summary
When using an SSH key protected by a passphrase, git operations (push/pull) require entering the SSH key password. In VS Code, this surfaces as a top-of-window popup that asks for the SSH key passphrase. T3 Code currently errors out instead of prompting.
Problem
If you use a passphrase-protected SSH key, running one-click commit, push, and create PR in T3 Code fails because there is no way to supply the SSH passphrase. The operation should not hard-fail; it should interactively collect the credential and continue.
Proposed solution
When git/SSH needs a passphrase (e.g. during push as part of commit + push + open PR):
Img from vscode's popup:

Motivation
Acceptance criteria
Additional context
Works fine when the key is already unlocked (e.g. via
ssh-agent). The gap is interactive prompting when the key is locked, especially during automated multi-step git flows.Error message
All reactions