Perforce - getting email on every checkin

前端 未结 5 1791
太阳男子
太阳男子 2021-02-18 21:26

Is there a way to get Perforce to send you an email on every check to a particular depository?

相关标签:
5条回答
  • 2021-02-18 22:04

    In the perforce visual client (P4V), go to Connection and Edit current User Under the user dialog box, go to the reviews tab. Select and deselect the different trees of the "depot"

    0 讨论(0)
  • 2021-02-18 22:05

    In p4v (visual client)

    1. Connection -> Edit Current User

    2. Enter the path to your repository under Reviews

    This is correct for OSX & Windows.

    0 讨论(0)
  • 2021-02-18 22:07

    Yes. Type "p4 user" to see your user configuration and then under "Reviews:" put the filespec of the area in depot where you'd like to get notified on a check-in, as in:

    Reviews:
        //depot/myproject/...
    

    See this section of the P4 command reference for more info.

    0 讨论(0)
  • 2021-02-18 22:10

    You want to install the Perforce Review Daemon script on your server. What it does is periodically poll the server for new changelists and sends an e-mail ONLY to the people interested in them. The script is maintained by Perforce and you can get help from the tech support to setup it.

    You can download it from the Perforce website from the support site (towards the bottom of the page).

    Perforce Support Site: http://www.perforce.com/perforce/loadsupp.html
    Direct Link to Script: http://public.perforce.com/public/perforce/utils/reviewd/p4review.py

    Once you have it installed you register your that your interested in changinglists by adding the filespec to your user account.

    0 讨论(0)
  • 2021-02-18 22:13

    As an admin you can use

    p4 triggers 
    

    to setup scripts that are executed when various actions are performed (ie: on check in of a changelist). I've used it to send an email to a distribution list that all of the developers were part of so that they were aware of who was checking in what and when.

    0 讨论(0)
提交回复
热议问题