git 使用记录
Posted _NKi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 使用记录相关的知识,希望对你有一定的参考价值。
拷贝远程库到本地
git clone URL
设置为本地库
git init
生成ssh
ssh-keygen -t rsa -C "[email protected]"
cd ~/.ssh
拷贝其中数据
vi id_rsa.pub
github 设置ssh 粘贴秘钥
设置邮箱和名字
git config --global user.email "[email protected]"
git config --global user.name "NKnife"
设置 github 远程仓库地址
git remote add origin [email protected]:NKnife/test.git
上传文件
git add index.html
git add test.html
git commit -m ‘上传index,test‘
git push -u origin master
以上是关于git 使用记录的主要内容,如果未能解决你的问题,请参考以下文章