git初始化及其使用

编辑: admin 分类: 电脑知识 发布时间: 2023-06-14 来源:互联网
git使用

image.png

一、 git初始化本地仓库

1、git init 本地仓库初始化
2、git add 添加本地仓库
3、git commit -m ‘first commit’ 第一次提交

远程仓库

git config —global user.name “zhuyuseng”
git config —global user.email “zhuyuseng@aliyun.com”

设置远程仓库的地址

git remote add origin https://gitee.com/bnkt/22.git

仓库的自我介绍: 将本地与远程仓库进行关联

git push —set-upstream origin master

以后, 只要用以下指令直接提交

git push

二、日常使用方法

image.png

https://note.youdao.com/s/GnILM5GE

【感谢龙石为本站提供信息共享平台 http://www.longshidata.com/pages/exchange.html】