push报错 src refspec vue_develop does not match any. 项目里不能有空文件夹
git push -f origin HEAD:你的分支名
// 一种将当前分支推送到远程同名的便捷方法。
git push origin HEAD
//提交代码流程
git pull
git status
git add <filenam>
git checkout <filename>
git commit -m ‘备注信息’
git push origin <branchname>
git reset HEAD -filename
//查看分支
git branch
//查看所有分支
git branch -a
//切换分支
git checkout <branchname>
//忽略文件
git update-index --assume-unchanged <filename>
git update-index --no-assume-unchanged <file>
//合并分支(在主分支)
git merge <branchname>
//创建分支
git checkout -b <branchname>
git push -u origin <branchname>
//删除分支
git branch -d <branchname>
git ssh 生成
1.删除ssh
sudo rm -rf ~/.ssh
2.生成ssh
ssh-keygen -t rsa -C email
3.查看ssh
cat id_rsa.pub