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秘钥