When a commit to revision control requires a developer to change their own config

后端 未结 5 691
独厮守ぢ
独厮守ぢ 2020-12-10 17:30

What\'s the best method to notify other developers when a change committed into revision control requires some specific additional action by the developer getting the update

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-10 17:55

    Personnally, I use 2 methods :

    1. the communication one : I tell to other developpers what manipulations are to do to be up-to-date (correct, but sometimes, we miss some details ....)
    2. the scripted one : I made an update script that is used to manage the update of all the parts of my project (different directories, different repositories, different version control...), in this script I put every operation needed to maintain a correct repository (I use it for svn and git repositories).

提交回复
热议问题