git 操作常用命令

Posted monkay

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 操作常用命令相关的知识,希望对你有一定的参考价值。

git仓库配置常用命令

 ####首先下载代码    
   + git下载代码命令: git clone [git地址]  [下载位置]
####分支命令
   1. 查看分支 git branch
   2. 查看远程分支 git branch -r
   3. 查看所有分支(本地和远程) git branch -a
   4. 创建分支 git branch [分支名称]
   5. 切换分支 git checkout [分支名称]
#####远程仓库操作
1.查看远程仓库地址 git remote -v 
2.切换远程仓库地址 
    git remote set-url origin URL 更换远程仓库地址,URL为新地址
    
 【git remote rm origin】 删除现有远程仓库 
 【git remote add origin url】添加新远程仓库

以上是关于git 操作常用命令的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

git 操作常用命令

Git常用操作

Git常用操作命令

Git 常用基本命令

Git 常用基本命令