注册Github
略
安装及配置git
安装及基本配置......略。
如果需要一个本地仓库需要与全局的设置不同的name和email,则可进入本地仓库所在的.git目录执行如下命令:
$ git config user.name "xxx"
$ git config user.email "your_mail@example.com"
通过`cat config`命令可看到本地仓库的用户名及邮箱地址被设置
生成SSH key
如果当前系统登录用户目录下不存在.ssh目录,则通过如下命令生成SSH key对应的id_rsa及id_rsa.pub文件:
$ ssh-keygen -t rsa -C "your_mail@example.com"
如果当前系统登录用户目录下存在.ssh目录,需要生成新的SSH key对应文件并不覆盖已有的id_rsa及id_rsa.pub文件,则通过如下命令会在当前目录中生成my_github及my_github.pub文件:
$ ssh-keygen -t rsa -c "your_mail@example.com" -f my_github
生成完成后拷贝到当前登录用户对应的.ssh目录中
Github配置ssh key
配置路径:settings -> SSH and GPG keys -> New ssh key
使用文本编译器打开上一步生成*.pub文件,复制其中内容并粘贴到github配置页面并确认添加。
GitHub配置access token
配置路径:settings -> Developer settings -> Person access tokens
设置token标识,选择token有效期及权限,生成token并保存到本地用于登录。
Github创建仓库并使用本地仓库上传
Github上创建一个仓库,配置仓库名称,填写可选的描述,生成仓库。
根据Github生成仓库后的描述不同的上传方式,选择合适的方式进行上传。
通过本地仓库进行上传使用如下命令:
$ git remote add origin https://github.com/path/to/XXX.git
$ git branch -M main
$ git push -u origin main
问题解决
port 443连接失败
Failed to connect to github.com port 443: Timed out
因为git被设置了代理,可使用如下命令消除代理
$ git config --global --unset http.proxy
$ git config --global --unset https.proxy
不支持密码登录
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
需要配置用户的access token,参考GitHub配置access token
|