克隆项目

git clone http://*git

把本地项目提交到远程

 git add --all

git commit -m "Initail commit"

git push origin master

同步远程到本地

git pull origin master

本地项目提交到远程:

git init

git add .

git commit -m "Initail commit"

//第四步:去github上创建自己的Repository

git remote add origin https://github.com/chzeze/*

git pull origin master

git push -u origin master

  

相关文章:

  • 2022-12-23
  • 2022-02-13
  • 2021-06-27
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
  • 2022-02-10
猜你喜欢
  • 2021-06-02
  • 2021-07-20
  • 2021-12-29
相关资源
相似解决方案