git配置和上传方法

Posted on 2023-06-25 15:30  Frank_Jin  阅读(77)  评论(0编辑  收藏  举报

1.配置用户名和邮箱:

git config --global user.name "your_name"
git config --global user.email "your_email"

2.生成SSH key

ssh-keygen -t rsa -C "your_email"  

接下来会有三次输入,都敲回车置为空。

3.查看自己的公钥

cat ~/.ssh/id_rsa.pub

从ssh-rsa开头,全部复制下来。

4.设置SSH Key

进入代码管理网站(github、gitee等)的个人设置,选中ssh公钥页面。

标题随便写,粘贴公钥。

5.在代码管理网站新建repo

6.进入本地代码目录打开git bash

初始化仓库:git init
添加全部文件到本地仓库:git add .
查看状态:git status
提交到本地仓库:git commit -m "描述"
和远程仓库建立连接:git remote add origin https://xxxxxxxx.git
提交到远程仓库:git push -u origin your_branch