发布时间:2023-10-12 12:30
见博客
点击打开链接
设置忽略文件 可以看到工程目录里的文件是灰色的,只有没有被忽略的才是亮黑色
见博客
点击打开链接
点击打开链接
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
cd ~/.ssh
如果没有,生成sshkey$ ssh-keygen -t rsa -C "youremail@example.com"
ssh -T git@github.com
点击打开链接
1: Can't connect to repository from configured remote. You could want to check .gitconfig
原因: 本地主机用户名和邮箱的配置与github上的邮箱和用户名不一致。导致匹配错误。
解决方案: 把本地主机的用户名和邮箱改成和github上的一致。
借鉴博客: 点击打开链接
2: repertory already exist.
解决方案: 找到项目目录,显示隐藏文件,找到.git目录,找到config文件,把类似下面的文件删除:
[remote "origin"]
url = git@github.com:littlelittle/OkHttpUtils.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master