git提交步骤

2019-08-29  本文已影响0人  HonGz
安装git

https://git-scm.com/downloads

配置用户

git config --global user.name "Your Name"
git config --global user.email "email@example.com"

创建SSH Key

ssh-keygen -t rsa -C "youremail@example.com"

登陆GitHub,打开“Account settings”

SSH Keys”页面:然后,点“Add SSH Key”,填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容

创建远程仓库

登陆GitHub,在右上角找到“new repository”按钮,点击创建一个新的仓库

连接远程仓库

git remote add origin git@github.com:用户名/仓库名.git

把所有内容推送到远程库上

git push -u origin master

上一篇下一篇

猜你喜欢

热点阅读