git基础
Posted saysmy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git基础相关的知识,希望对你有一定的参考价值。
一. 撤销git add的文件
git add xx
命令可以将xx文件添加到暂存区,如果有很多改动可以通过 git add -A .
来一次添加所有改变的文件。
注意 -A
选项后面还有一个句点。 git add -A
表示添加所有内容, git add .
表示添加新文件和编辑过的文件不包括删除的文件; git add -u
表示添加编辑或者删除的文件,不包括新添加的文件。
撤销git add 的文件,将暂存区stage中的文件删除:
git rm -r --cached .
二. 初始化git仓库
三. 克隆指定远程分支
git clone -b xxx(分支名) git@gitlab.com:saysmy/test.git
例如:
git clone -b release/test git@gitlab.com:gj-frontend/xingguang.git;
常见问题:
Could not open a connection to your authentication agent
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
如果确定公钥已经放到github或者gitlab等,那么运行下面的命令检查下:
cat .git/config
是否远程仓库地址不对?
ssh-add -l
如果提示 Could not open a connection to your authentication agent. 运行 ssh-agent bash , 再执行下面的。
如果提示The agent has no identities.则需要把私钥加到ssh-agent ssesion中:
ssh-add ~/.ssh/gitlab_id_rsa
再运行 ssh-add -l 发现加入成功:
2048 a3:2f:8c:9b:2b:ae:d4:23:9b:c6:47:4e:94:47:38:c2 /root/.ssh/gitlab_id_rsa (RSA)
以上是关于git基础的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段