Standard practices for Subversion

后端 未结 9 2175
太阳男子
太阳男子 2021-02-06 09:33

I\'m wondering if there\'s any other factors to consider for standard practice of using Subversion.

The few I have are:

  • Directory structure of /tags /tr

9条回答
  •  旧巷少年郎
    2021-02-06 10:08

    You should always do an update before committing, to prevent possible conflicts with other commits made by other people and painful merges.

    Also, every commit should contains something meaningful, like a bugfix, or a new feature, or some improvement to an existing one, something that can be meaningful described in the log message. A source control tool is not a backup tool, so "end-of-the-day" commit without a meaningful content should be avoided.

提交回复
热议问题