git常用命令
Posted 夏蝉冬雪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git常用命令相关的知识,希望对你有一定的参考价值。
git init
ssh-keygen -t rsa -C "[email protected]"
cd /root/.ssh/
vim id_rsa.pub
复制key到github
验证
ssh -T [email protected]
git config --global user.name "longlong7"
git config --global user.email "[email protected]"
git remote add origin [email protected]:longlong7/longlong7.github.io.git // [email protected]:yourName/yourRepo.git
git add README
git commit -m "first commit"
git push origin master
以上是关于git常用命令的主要内容,如果未能解决你的问题,请参考以下文章