欢迎访问我的博客,同步更新: 枫山别院
最近要将代码推送到一个新库,并且要不带git log,搜索了下没有找到方法。
然后自己查文档找到一个办法,命令如下:
//--orphan 参数可以产生不带历史的新分支
git checkout --orphan sourcecode
//提交本地分支
git commit -m "code init"
//添加远程库
git remote add remoterepo http://XXXXXXX
//将本地新分支sourcecode推送到远程库remoterepo的master分支
git push remoterepo sourcecode:master
网友评论