标签:setting https org download osi 邮箱 keygen 需要 rem
1. 创建想要git管理的非中文目录
2. 在该目录下执行命令 git init
1. 到https://github.com/注册账号
2. 在本地repository目录下执行命令:
config --global user.name "你的用户名"
config --global user.email "你的邮箱"
3. 生成ssh key,并复制到粘贴板,执行命令:
ssh-keygen -t rsa -C "你的邮箱"
clip < ~/.ssh/id_rsa.pub
4. 粘贴到github账号-Setting-SSH and GPG keys中,新建的SSH keys中
5. 测试是否成功,执行命令:
ssh -T git@github.com
1. 到github上在仓库Clone or download下拉列表中找到以git@github.com:开头的仓库SSH地址并复制(因为HTTPS较慢,一般用SSH地址)
2. 在本地执行命令:
git remote add origin 你复制的地址
注意:如果远程仓库中有文件,本地第一次push之前需要执行:
git pull origin master
3. 执行关联命令:
git push -u origin master
注意:如果需要重新关联一个origin需要执行命令:
git remote rm orgin
git remote add origin xxxxx
git push -u origin master
2. 在本地执行命令:
git clone 你复制的地址
该方法比较省力,省去了执行命令
git remote add origin
和git push -u origin master
标签:setting https org download osi 邮箱 keygen 需要 rem
原文地址:https://www.cnblogs.com/taylorluo/p/10801812.html