gitlab创建空白分支并添加文件
1、本地创建新分支 arthas
git checkout –orphan arthas
2、删除原来代码树下的所有文件
git rm -rf .
3、粘贴/添加新文件到项目文件夹下
4、将当前文件夹中代码添加在本地分支arthas
git add .
5、将当前文件夹中代码上传暂存在本地分支arthas
git commit -m 'new branch'
6、提交到远程分支arthas
git push origin arthas
--------------------OK---------------------