github 常用命令

来源:互联网 发布:阿里云到底是干嘛的 编辑:程序博客网 时间:2024/05/22 05:15

1. 查看remote远程状态 

git remote -v

2. 移除remote远程状态

git remote remove <name>

3.创建分支

git branch <name>

4.切换到其他分支

git checkout <name>

0 0