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

Git

时间:2020-01-22 11:00:37      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:osi   版本管理   联系   bsp   upstream   ted   版本   use   tboot   

 

一:常用Git命令

1.git init
//将GitHub(远端/远程)的相应仓库拷贝到本地计算机空文件夹中
2.git clone https://github.com/XXX/NutBoot.git
//"."表示将当前目录下所有改动的文件夹及文件添加到版本管理器
3.git add .
4.git config user.name "XXX"
5.git config user.email "XXX"
6.git commit -m "comment"
7.git push -u origin master
8.git push origin master:master
9.git pull origin master

//查看本地分支和远程分支的关系
git branch -vv
//本地分支和远程分支建立联系
git branch --set-upstream-to=origin/master master

//refusing to merge unrelated histories
git pull origin master --allow-unrelated-histories

//‘origin‘ does not appear to be a git repository
git remote add origin git@github:XXX/NutBoot.git
git remote add origin https://github.com/XXX/NutBoot.git

Git

标签:osi   版本管理   联系   bsp   upstream   ted   版本   use   tboot   

原文地址:https://www.cnblogs.com/BenNiaoXianFei/p/12227982.html

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