git基本使用

Posted yongerbingxuan

tags:

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

1.基本使用

1.在gitee上新建仓库
2.git init初始化
3.git add .//添加内容
4.git commit -m "first"
5.git remote add origin https://gitee.com/shiliudepingfang/myshop.git
6.git push -u origin master
7.git branch 查看分支
8.git branch name 创建分支
9.git checkout 切换分支
10.创建+切换分支 git checkout -b name
11.合并某分支到当前分支 git merge name 
12.删除分支 git branch -d name
13.删除远程分支 git push origin --delete name
删除远程Git仓库 git remote rm origin
添加远程Git仓库 git remote add origin 
下载Git仓库 git clone 
查看状态 git status
remote 远程
从远程获取代码并合并本地的版本 git pull origin master

以上是关于git基本使用的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

git--github使用

如何管理在每个 git 版本中添加私有代码片段?

markdown Git代码片段