Git基本操作

1. Git安装

windows安装:进入网站https://git-scm.com/下载安装,然后在cmd命令行配置

git config --global user.name "xxx"
git config --global user.email "xxx"
git config --list			#检查信息是否写入成功
git config --global credential.username "塔姆"  # 进行身份验证时使用的用户名
git config --global credential.helper store		# 再次使用 Git 时就不需要再输入密码

本地项目上传至GitHub

$ git init

$ git add .

$ git commit -m "注释描述"

$ git remote add origin https://github.com/Tany-ong/notes.git

$ git push -u origin "master"

2. push错误

 ! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://gitee.com/tianqisixiang/crud-learning.git'
错误原因:

本地没有update到最新版本的项目(git上有README.md文件没下载下来)

解决方法:
git pull --rebase origin master

把github上最新的文件下载下来,再push

 git push -u origin master

3.无法从远程仓库读取

$ git clone git@github.com:alibaba/lowcode-engine.git
Cloning into 'lowcode-engine'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

解决方法:
1、输入 ssh-keygen 命令生成秘钥
2、在 GitHub 左侧菜单中选择 SSH and GPG keys
3、点击 New SSH key 或 Add SSH key添加生成的 SSH秘钥
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值