个人小节
1.初始化git
git init
2.将文件添加入暂存区
git add .
3.将文件加入本地仓库
git commit -m "描述"
4.设置本地账户密码
git config --global user.name xiaoyuan9527
git config --global user.email ***********
5.绑定临时仓库(为了方便)
git remote add temp 远程仓库地址
6.提交本地至远程仓库
git push temp master(分支名)
注意,前段时间起,github 已经无法用账号密码登陆,只能使用ssh
ssh使用方法 ssh-keygen -t rsa
再去c盘 用户 .ssh文件找 id_rsa.pub =>复制到github中,之后使用地址是ssh给予地址