Git 创建空的远程/本地分支

发布时间: 更新时间: 总字数:150 阅读时间:1m 作者: IP上海 分享 网址

在使用github时,有创建新的远程分支的需求,但会包含之前的提交,本文介绍如何使用 Git 创建空的远程/本地分支,并推送到仓库

创建本地分支

git checkout --orphan=static
git checkout --orphan <fresh branch>

删除新建分支所有内容

git rm -rf .

创建新文件

readme.txt 或其他内容

提交

git add .
git commit -am "init branch"

查看本地和远程分支情况

git branch -a

垃圾回收

git gc --aggressive --prune=all

推送本地分支到远程

git push origin static
git pull
git branch -a
Home Archives Categories Tags Statistics
本文总阅读量 次 本站总访问量 次 本站总访客数