別のリモート リポジトリからミラーリングされた新しいローカル git リポジトリを作成しました。
git init
git remote add original {url}
git pull original master
git remote add origin {url}
git push -u origin master
original
これにより、 s master ブランチのミラーが作成されます。からタグの新しいブランチを作成したいと思いますoriginal
。
コマンドはどのように表示されますか? 私は試しgit checkout -b newbranch original/tagname
ましたが、私は得ました:
fatal: Cannot update paths and switch to branch 'newbranch' at the same time.
Did you intend to checkout 'original/tagname' which can not be resolved as commit?