标签: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
标签:osi 版本管理 联系 bsp upstream ted 版本 use tboot
原文地址:https://www.cnblogs.com/BenNiaoXianFei/p/12227982.html