@zzy0471
2022-04-20T10:44:14.000000Z
字数 661
阅读 397
Git
从 https://git-scm.com/downloads 下载windows版本并安装。安装过程中使用默认设置即可。
这个步骤是可选的,如果电脑上已经有密钥对,则不用再生成。
$ ssh-keygen -t rsa -C "youremail@example.com"
,参数换成自己的邮件,一路回车在“Git Bash”中执行命令:
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
cd /e/github
$ git clone git@github.com:garyxie19/IPDesk.git
$ git checkout -b branchName origin/branchName
如果是新注册的github用户,可能推送不上去,需要登录github验证一下邮箱。