继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

git 远程连接,操作 github

MUSE81
关注TA
已关注
手记 3
粉丝 5
获赞 60
  • ssh连接

    • 设置用户
      • git config --global user.name ""
      • git config --global user.email ""
    • 本地创建git项目
    • 生成ssh.命令 ssh-keygen -C "email"
    • 将生成的id_rsa.pub里面的内容复制到github的add ssh中

    • 验证:ssh -T git@github.com,出现....

      you have successfully authenticated...

  • 远程连接

    • git init

    • git remote add origin git@github:username/projectname.git

    • git push -u origin master
  • 远程克隆
    • git clone git@github:username/projectname.git

配置出现的问题

打开App,阅读手记
4人推荐
发表评论
随时随地看视频慕课网APP