git学习笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git学习笔记相关的知识,希望对你有一定的参考价值。
查看所有远程分支:git branch -a
查看本地分支:git branch
创建分支:git branch [branch_name]
切换到分支:git checkout [branch_name]
删除本地分支:git branch -d [branch_name]
删除远程分支:git push origin --delete [branch_name]
重命名本地分支:git branch -m [old_branch_name] [new_branch_name]
查看本地分支:git branch
创建分支:git branch [branch_name]
切换到分支:git checkout [branch_name]
删除本地分支:git branch -d [branch_name]
删除远程分支:git push origin --delete [branch_name]
重命名本地分支:git branch -m [old_branch_name] [new_branch_name]
git.oschina.net 学习
http://developer.51cto.com/art/201512/502921.htm
http://www.kuqin.com/shuoit/20141213/343854.html
http://developer.51cto.com/art/201512/502921.htm
http://www.kuqin.com/shuoit/20141213/343854.html
以上是关于git学习笔记的主要内容,如果未能解决你的问题,请参考以下文章
2021年还没上手 Flutter 的移动开发们该看看这份Git高星的286页学习笔记了!