bestpika / empty

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

空白

建立空白分支

git checkout --orphan {name}
# e.g.
git checkout --orphan master

建立空白提交

git commit --allow-empty -m '{message}'
# e.g.
git commit --allow-empty -m 'chore: initial commit'

推送到多個 remote

git remote set-url --add --push {倉庫} {目標}

About