首先在工程文件位置处右键git bash here
本地创建ssh key
$ ssh-keygen -t rsa -C "[email protected]"
为了验证是否成功,在git bash下输入:
$ ssh -T [email protected]
在本地Users/BEAR/.ssh中找到.pub文件复制密钥到github-setting-key..新建里面
设置username和email,因为github每次commit都会记录他们。
$ git config --global user.name "your name" $ git config --global user.email "[email protected]"
初始化git:
$ git init
添加需要添加到git的文件:
$ git add .
提交代码到本地目录:
$ git commit -m "first upload"
进入要上传的仓库添加远程地址:
$ git remote add origin [email protected]:yourName/yourRepo.git
推送改动
你的改动现在已经在本地仓库的 HEAD 中了。执行如下命令以将这些改动提交到远端仓库:
$ git push origin master
OK!!
原文地址:https://www.cnblogs.com/kumata/p/9011868.html
时间: 2024-10-20 02:11:05