更新时间:2024-03-05 GMT+08:00
TortoiseGit客户端使用
生成PPK文件
使用TortoiseGit作为客户端时,下载和提交代码需要PPK文件,主要有如下两种场景:
- Git客户端生成了公私钥对,并将该公钥添加到代码仓库的ssh-key配置中
- 此前未添加互信操作,即没有添加公钥到代码仓库中
Push版本库
- 配置用户名、邮箱和签名密钥(PPK文件)。
- 在空白处右键,选择 。
- 选中
如果不能Push,请运行如下脚本进行排查,并将生成的“git.log”发给售后支持:
#!/bin/bash # this script will collect some logs for Coding.net ### how to use ### # first enter your git reposiztory # then execute this bash, please make sure you have correct rights echo "## git version ##################" >> git.log git version >> git.log echo "## ping ##########################" >> git.log ping code*************.com >> git.log echo "## curl *************.com ###########" >> git.log curl -v https://code*************.com >> git.log 2>&1 echo "## ssh -vT git@*************.com ##############" >> git.log ssh -vT git@*************.com >> git.log 2>&1 echo "## git pull ##############" >> git.log GIT_CURL_VERBOSE=1 GIT_TRACE=1 GIT_TRACE_PACKET=1 git pull >> git.log 2>&1
节点,如下图所示,填写用户名与邮箱地址。
父主题: 更多Git知识