Git 学习笔记
1. 创建本地仓库
git init #初始化本地仓库
git add . #将文件夹下的文件都添加进暂存区
git commit -m "注释" #将暂存区内容提交到本地仓库
2. 连接远程仓库
2.1 创建SSH KEY
检查C盘/用户/是否有.ssh目录,若有即可跳过这一步
ssh-keygen -t rsa -C "youremail@example.com" #创建SSH KEY
回车后会以此询问是否更改存储位置、是否覆盖(若非第一次)、输入密码(未避免忘记,可以不设置)、确认不输入密码
若嫌麻烦,一路回车即可
2.2 配置远程SSH KEY
在C盘/用户/.ssh/目录下找到id_rsa.pub并复制内容
登录Github,点击右上角图标->Settings->SSH and GPG keys->New SSH key
2.3 连接远程仓库
在github上创建仓库,根据需求选择公开还是私有
创建完成后便可在本地仓库git bash输入
git remote add origin https://github.com/example #地址为刚创建的git url
关联完成后便可push
git push -u origin master #空仓库加上-u
git push origin master #有了内容后去掉-u即可
完成后刷新远程仓库就会发现已经上传成功了
小坑
由于黑人运动的影响,主分支已经由master更名为main,所以push和pull都会报错
git branch -m oldBranchName newBranchName 把本地的master修改为远程的main
若在创建远程仓库时,勾选了Initialize this repository with a README(就是创建仓库的时候自动给你创建一个README文件),那么push的时候会报
,这是因为本地仓库并没有这个README文件failed to push some refs to https://github.com/example
git pull --rebase origin master #将远程仓库同步到本地仓库
3. 功能笔记
3.1 回滚操作
git log #查看更新日志
git reset --hard commit id #通过git log查看commit的id,执行操作便可回滚
3.2 更新分支
若原本的提交是A – B – C,回滚到 A 后再更新变成A – E,若要远程同步本地最新的版本
git push --force #忽略之前的commit,更新为最新版本
持续更新中…
Howdy! This is my 1st comment here so I just wanted to give a quick shout out and say I genuinely enjoy reading through your blog posts. Can you suggest any other blogs/websites/forums that cover the same subjects? Appreciate it!