用Git向gitHub上传项目
1.安装git
2.在git安装目录下,运行git-bash.exe 如图所示
3.在git中绑定你注册gitHub是的用户名、邮箱。
$ git config --global user.name "gxn888" // “gxn888”换成你的用户名
$ git config --global user.email "[email protected]" //[email protected] 换成你注册时的邮箱
如图所示:
4.获取密钥 运行:
$ cd ~/.ssh
//此时会出现此行代码 :提示没有文件 :bash: cd: /c/Users/GXQ/.ssh: No such file or directory
5.需要运行下边的命令
$ ssh-keygen -t rsa -C "[email protected]" //[email protected] 换成您注册时的邮箱
如图所示:
此时下方就显示出你的密钥了。 ctrl+c复制你的密钥
复制密钥到你的gitHub中,具体位置如下图所示:
6.在你项目文件目录中 鼠标右键--Git Gash Here
鼠标右键--Git Gash Here 后 会出现以下图
7.依次执行下方命令:
git init
git add README.md
git commit -m ‘first commit‘
$ git remote add origin https://github.com/gxn888/VueTodoList.git
// https://github.com/gxn888/VueTodoList.git 换成你建的仓库git地址
$ git push -u origin master
此时刷新gitHub 你会发现你的代码已经成功上传到gitHub上了。