git

Ling Yu
Git基本配置
1.用户名称和登录邮箱
1.设置全局用户名和邮箱
git config --global user.name '用户名称'
git config --global user.email '登录邮箱'
2.取消全局配置
git config --global --unset user.name
git config --global --unset user.email
3.本地用户
# 设置为私有仓库的GitHub账号邮箱和公有账号的GitHub邮箱。
git config --local user.name '用户名称'
git config --local user.email '登录邮箱'
2.密钥
2.1.生成单个密钥
ssh-keygen -t rsa -C '邮箱地址'
2.2.测试
ssh -T [email protected]
ssh -T [email protected]
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for '/root/.ssh/id_rsa' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
Load key "/root/.ssh/id_rsa": bad permissions
解决 https:#blog.csdn.net/bigbaojian/article/details/130255339
chmod 600 ~/.ssh/* && chmod 644 ~/.ssh/*.pub && chmod 700 ~/.ssh
3.查看配置文件
你可以通过以下命令查看所有的配置以及它们所在的文件:
git config --list
git config --list --show-origin
4.提交库
4.1.初始化本地库
git init
4.2.添加文件
git add README.md #单个文件
git add . #所有文件
4.3.Commit
git commit -m "提交信息"
4.4.分支
git branch -M main #分支命名
git branch #查看本地所有分支
git branch -r 查看远端所有分支
git branch new_branch_name 新建分支
git checkout new_branch_name 切换分支
# or
git checkout -b <branch name> #新建并切换分支
git push origin <branch name> #推送分支到远端
git branch -d <branch name> #删除分支
git push origin :<branch name> #删除远端分支
git merge <branch name> #合并分支
git branch -m <oldbranch> <newbranch> #重命名分支
git branch -a #查看所有分支
4.5.设置远程库
git remote rm
git remote add origin [email protected]:xxx/xxx.git
4.6.Push
git push -u origin main
git push -f origin main #强行让本地分支覆盖远程分支
5.拉取库
git pull origin main #尽量别使用
git fetch origin main #拉取远端main到本地
git checkout my_branch #切换至想要的工作分支
git merge main #将main分支合并到当前的工作分支
git merge FETCH_HEAD #将main分支合并到当前的工作分支
6.克隆库
git clone 库地址 保存地址
7.清除已提交缓存
git rm -r --cached .idea #因为.gitignore只对从来没有commit过的文件起作用。