Git创建本地仓库并与远程仓库建立连接

  1. git init # 初始化本地仓库
  2. git add ./ # 将文件添加到待提交区域
  3. git commit -m “提交信息” # 提交
  4. 使用GitHub创建仓库(new Repository)
  5. ssh-keygen -t rsa -C “[email protected]” # 创建SSH-Key
  6. 将本地用户目录(用户目录/.ssh/id_rsa.pub)的ssh公钥添加到GitHub中
    Git创建本地仓库并与远程仓库建立连接_第1张图片

  7. git remote add origin [email protected]:2571503519/MedicalFee-Manage.git # 将远程仓库与本地仓库建立连接

  8. git pull origin master –allow-unrelated-histories # 首先将远程仓库的文件pull下来
  9. git push origin master # 将本地提交同步到远程仓库

你可能感兴趣的:(Git基础)