0

状況は次のとおりです。

  1. 以前にコードをリモート リポジトリにコミットしました (マスター バージョン)
  2. それ以来、ローカル バージョンに変更を加えましたが、コミットしていません。
  3. コミットする前に、リモート バージョンにバージョン番号のタグを付け、ブランチを作成し、ローカル (コミットされていない) バージョンに dev などのタグを付けたいと考えています。

どうすればこれを行うことができますか?

4

1 に答える 1

1

単にそれを行う:

$ 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
于 2013-07-23T15:42:51.750 に答える