Git使用问题整理

2017-11-14  本文已影响0人  iYarin

1. 账户问题处理

git config --list


git config --global user.name "yourgitname"
git config --global user.email "yourmail"

which git

git version

1、终端:cd ~/ssh
2、生成 SSH KEY:ssh-keygen -t rsa -C 邮箱
3、一直Enter,不设置文件名,不设置密码

2.如何删除本地Git仓库

在本地仓库的目录下调用命令行删除根目录下的.git文件夹,输入

find . -name ".git" | xargs rm -Rf

上一篇 下一篇

猜你喜欢

热点阅读