git init
git remote add origin https:// //git账号中的网址

(git remote //可以查询添加的远程仓库)

git add . //添加刚刚导入的整个工程

git commit -m “添加工程"

git push -u origin master (第一次的话有冲突,强制Push: git push -f origin master)

相关文章:

  • 2021-04-05
  • 2021-07-11
  • 2021-06-22
  • 2021-07-17
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
猜你喜欢
  • 2021-05-31
  • 2021-10-24
  • 2021-06-08
  • 2021-12-05
  • 2021-11-05
  • 2022-12-23
相关资源
相似解决方案