状況は次のとおりです。
- 以前にコードをリモート リポジトリにコミットしました (マスター バージョン)
- それ以来、ローカル バージョンに変更を加えましたが、コミットしていません。
- コミットする前に、リモート バージョンにバージョン番号のタグを付け、ブランチを作成し、ローカル (コミットされていない) バージョンに dev などのタグを付けたいと考えています。
どうすればこれを行うことができますか?
状況は次のとおりです。
どうすればこれを行うことができますか?
単にそれを行う:
$ git status .
[...]
# modified: README.txt
[...]
# the following will create a tag on the last commit
# (the one already pushed to the remote)
$ git tag -a "v0.12" -m "version 0.12"
# send the tag to the remote
$ git push --tags
# create a new branch 'dev' and immediately switch to it
$ git checkout -b "dev"
# commit the modified files to the new branch
$ git commit -m "updated README for new 'dev'-version" README.txt
# push the new branch to the remote
$ git push