コミットについて
編集されたファイルの保存と同様に、コミットは、ブランチにある1つ以上のファイルの変更を記録します。 Gitは、各コミットに次の情� �を識別するSHA、またはハッシュと呼ばれる固有のIDを割り当てます。
- 具体的な変更
- 変更時間
- 変更者
コミットするときは、変更を簡潔に説明するコミットメッセージを含める必要があります。
共同作業しているコミットに共作者を追� できます。 詳しい情� �については、「複数の作者を持つコミットを作成する」を参照してく� さい。
リベースを使用すると、一連のコミットを変更したり、タイ� ラインでのコミットの� �序を変更したりできます。 詳しい情� �については、「Git リベースについて」を参照してく� さい。
About commit branches and tag labels
You can see which branch a commit is on by looking at the labels beneath the commit on the commit page.
- GitHub Enterprise Serverインスタンスで、リポジトリのメインページにアクセスしてく� さい。
- On the main page of the repository, click the commits to navigate to the commits page.
- コミットメッセージリンクをクリックしてコミットに移動します。
- To see what branch the commit is on, check the label below the commit message.
If your commit is not on the default branch (main
), the label will show the branches which contain the commit. If the commit is part of an unmerged pull request, you can click the link to go to the pull request.
コミットがデフォルトブランチにある� �合は、そのコミットを含むタグがすべて表示され、ブランチのリストにはデフォルトブランチのみが表示されます。 For more information on tags, see "Git Basics - Tagging" in the Git documentation.