美文网首页
Ubuntu中git的安装及上传

Ubuntu中git的安装及上传

作者: 小光K | 来源:发表于2019-05-14 20:32 被阅读0次

安装git

sudo apt-get install git

如果遇到源相关问题可以先进行apt-get update

在GitHub上添加SSH KRY

ssh-keygen -t rsa -C "your_email@example.com"  # 创建一个SSH KEY
cat < ~/.ssh/id_rsa.pub  # 显示SSH KEY

手动复制显示的SSH KEY,在github设置中粘贴

设置配置变量

git config --global user.email "your_email@example.com"
git config --global user.name "your_username"

代码提交

在GitHub上建好仓库,记录下仓库的ssh

cd /Users/XX/Documents/code
git clone SSH
cd /Users/XX/Documents/code/repositoryname
git add .
git commit -m "备注"
git push

参考资料:
github设置添加SSH

相关文章

网友评论

      本文标题:Ubuntu中git的安装及上传

      本文链接:https://www.haomeiwen.com/subject/ofoeaqtx.html