fork //复制仓库到自己的github账号
添加ssh keys ; ~/.git后再查找id_rsa.pub文件并copy里面的私钥
git clone //clone到本地
git init 初始化本地仓库
git add README.md //添加文件
git commit -m "first commit" //提交改动,commit为:first commit
git remote add origin https://github.com/matengbing/gitrepositytest.git //与远端仓库建立连接
git push -u origin master //推送到master
git checkout -b feature-develop//新建feature-develop分支
git push origin test //推送到test分支,如果远端不存在test分支就新建test分支
git branch -a //查看所有分支
git branch -r //查看远端分支
git status
1.解决 fatal: Not a git repository (or any of the parent directories): .git 问题
使用git init初始化一下