diff --git a/Code Management/Git/main.md b/Code Management/Git/main.md index f3fe02d..bcd3f12 100644 --- a/Code Management/Git/main.md +++ b/Code Management/Git/main.md @@ -31,6 +31,12 @@ If you need to use a specific SSH key for your Git operations, you can configure git config --add --local core.sshCommand 'ssh -i ' ``` +For Clone With Custom SSH Key Use: +```bash +git -c core.sshCommand="ssh -i " clone host:repo +``` + + *Replace `` with the actual path to your SSH key file.* ## Creating and Managing a Local Git Repository