内容简介:(git push origin test
初始化
Git init
(在本地工程目录下),生成.git 文件夹,如果已经生成过就不需要初始化了
Git init
提交文件
git add *
( 可替换成具体要上传的文件名, 表示提交所有有变化的文件)
添加上传文件的描述
git commit -m "本次提交描述"
创建分支
git branch test
切换分支
git checkout test
与远程分支相关联
git remote add origin https://github.com/stormsha/blog.git
上传分支
git push origin test
常用命令
- git remote add origin https://github.com/stormsha/blog.git (关联远程仓库)
- git add . (提交文件)
- git commit -m "test" (提交描述)
- git branch test(创建分支)
- git checkout test (切换分支)
- git push origin test (上传文件)
- git pull --rebase origin master(合并远程仓库)
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- pm2常用指令
- Xcode 常用 LLDB 指令
- 项目中常用的git指令
- JVM中常用堆栈跟踪内建指令
- Linux运维,到底如何入门?常用linux操作指令盘点!
- redis 用scan指令 代替keys指令(详解)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Programming Computer Vision with Python
Jan Erik Solem / O'Reilly Media / 2012-6-22 / USD 39.99
If you want a basic understanding of computer vision's underlying theory and algorithms, this hands-on introduction is the ideal place to start. As a student, researcher, hacker, or enthusiast, you'll......一起来看看 《Programming Computer Vision with Python》 这本书的介绍吧!