一、git提交代码命令(提交代码三步走)

#1、所有代码一次性提交到本地仓库
git add .

#2、提交注释说明
git commit -m "xxx"

#3、提交到远程仓库(已经初始化并配置好远程仓库地址)
git push origin master

 

二、更换远程仓库地址命令:

git remote set-url origin https://gitee.com/xxxxx/xxx.git

 

相关文章:

  • 2021-11-18
  • 2022-02-10
  • 2022-12-23
  • 2021-12-31
  • 2021-12-09
  • 2022-01-07
猜你喜欢
  • 2021-08-24
  • 2021-12-21
  • 2021-06-17
  • 2022-12-23
  • 2022-12-23
  • 2021-10-03
  • 2022-12-23
相关资源
相似解决方案