git基本操作

Posted rachelint

tags:

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

一.验证

git config user.name "xxx"

git config user.email "[email protected]"

 

二.创建,连接

在选择的文件夹中打开git bash

git clone https:xxxxxxxxx

 

连接远程仓库

git remote add origin xxxxxxxxx

 

三.同步,更新

同步

git fetch

 

更新

手动/命令新建文件夹或者文件

git add . 或者相应文件夹/文件

git commit -m "xxx"

git push

git pull不知道怎么用的

 

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

[git 01] git基本操作(不涉及分支等操作)

git仓库的创建及基本操作

Git命令行基本操作

Git基本操作

【学了就忘】Git操作 — 14.Git基本操作(一)

# git常用基本操作