码迷,mamicode.com
首页 > 其他好文 > 详细

git简单操作

时间:2020-12-31 12:46:06      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:仓库   提交   下载到本地   远程文件   remote   更新   add   远程仓库   comm   

  • 从远程仓库下载到本地
git clone 仓库地址
  • 本地修改的文件添加上传队列
git add *              
  • 上传队列中的文件提交到本地仓库
git commit -m ‘提交的说明‘
  • 将本地仓库的内容推送到远程仓库
git push origin master 
  • 拉取远程仓库内容到本地,更新代码
git pull origin master
  • 本地有briup文件夹,上传到仓库,briup 文件夹初始化为本地仓库
git init
  • 自己仓库的地址将本地仓库与远程仓库绑定
git remote add origin  https://gitee.com/Laoguihua/briup.git
  • 强制上传覆盖远程文件
git push -f origin master

git简单操作

标签:仓库   提交   下载到本地   远程文件   remote   更新   add   远程仓库   comm   

原文地址:https://www.cnblogs.com/nthforsth/p/14195512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!