Fork me on github

git命令

  • git克隆指定分支
git clone -b 分支名称 git地址
  • 查看本地所有分支
git branch
  • 查看远端所有分支
git branch -r
  • 切换分支
git checkout hot-fix
  • 改变仓库地址
git remote set-url origin git地址
  • 查看git地址
git remote -v
  • 同步远端分支
git fetch
  • 同步删除远端已经删除的分支
git remote prune origin

 

  • 暂存
git stash save 'beizhu'
  • 查看暂存记录
git stash list
  • 取回暂存代码
git stash pop

 

  •  提交代码
git push origin master

 

 

 

posted @ 2021-03-17 17:45  我の前端日记  阅读(38)  评论(0编辑  收藏  举报
Copyright © 2021 LinCangHai
Powered by .NET 5.0 on Kubernetes