当前位置:   article > 正文

git上传项目的命令集合_git 上传代码命令

git 上传代码命令
git init      新项目初始化
git add .
git commit -m "项目介绍"
git remote add origin ‘提交地址’
git push -u origin master

git log  查看提交日志
git reset --hard AA  回退到AA版本
git push -f   强行让本地代码覆盖git上的代码

git pull
git add .   添加到本地仓库
git commit -m '描述'  提交
git push 

git remote update origin --prune  刷新分支
git branch -a 查看所有分支和当前分支
git checkout -b B 创建并切换到test
git checkout A  回到当前分支A

git branch -a  查看你本地所有的分支
git checkout -b A 创建并切换到A
git pull origin A  拉A分支的代码
git merge B   就是把B分支 合并到 A分支
git push origin A  提交到A分支

git clone 地址   // 拉取远程代码
git clone 地址 -b 分支名    // 拉取远程指定分支的代码
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/968389
推荐阅读
相关标签
  

闽ICP备14008679号