git
Making Git SSH Commands Permanent: Best Practices for Repository-Specific SSH Keys
The Problem Have you ever found yourself typing this long command every time you want to pull from a specific repository? GIT_SSH_COMMAND='ssh -o IdentitiesOnly=yes -i /root/.ssh/repo' git pull It's tedious, error-prone, and breaks your workflow. Let's fix that