首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

git 旁支的操作

2013-02-25 
git 分支的操作命令窗口输入: git branch -a创建一个本地的分支:git checkout -b branch_name创建一个远程

git 分支的操作

命令窗口输入: git branch -a

创建一个本地的分支:git checkout -b branch_name

创建一个远程分支:git push origin branch_name

切换分支:git checkout branch_name

删除一个本地分支:git branch -D?branch_name

删除一个远程分支:?git push origin :branch_name ? ? (有冒号)

热点排行