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到要上傳文件的目錄中,然后執(zhí)行一下的命令
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