git上传步骤
一:
ssh-keygen -t rsa -C "your_email@youremail.com"
二:
打开id_rsa.pub,复制里面的key。回到github,进入Account Settings,左边选择SSH Keys,Add SSH Key,title随便填,粘贴key。
三:
ssh -T git@github.com
四:
git config --global user.name "your name"
git config --global user.email "your_email@youremail.com"
五:
cd到要上传文件的目录中,然后执行一下的命令
git init
git remote add origin git@github.com:bzd111/python.git
git add hello.txt#add后面的文件名
git commit –m "这里写的是备注 "
git push origin master -f