我正在从 SVN 飞跃到 Git(不过,我对 SVN 的尊重仍然存在),我对一些 SVN 到 Git 术语有一些疑问。在 SVN 中,许多存储库是这样设置的:
- trunk : The place where all of the main development occurs
- tag : Storing versions of major releases or important milestones
- branch : Where smaller "branch" development occurs as to not conflict with the main development occurring in the trunk, then is later merged into the trunk
branch/tag/trunk
Git中的标准约定名称是什么?
感谢您的时间。