Git的基本使用 -- 远程仓库

SSH公钥

克隆仓库到本地

  • git clone 仓库地址


推送到远程仓库

  • 与仓库建立连接
    • git remote add origin 仓库地址
  • Push
    • git push origin master


从远程仓库拉取更新到本地仓库

  • git pull origin master




猜你喜欢

转载自www.cnblogs.com/jiyu-hlzy/p/12198085.html