1、新建项目后,在本地git clone后再复制代码进来提交
新建项目:https://gitee.com/projects/new
2、新建项目后,使用以下命令将本地已有代码关联至gitee项目
git initgit remote add origin https://gitee.com/xxx(账号)/xxx(项目名).gitgit add .git commit -m "Initial commit"git merge master --allow-unrelated-historiesgit pull --allow-unrelated-historiesgit push -u origin master