What are some good Powershell verbs for checking files?

I try to stick to a list of approved verbs for my cmdlets. Currently, I have a cmdlet to check the file from our version control system, and I am writing one to check the file again.

I am not sure which verbs really fit my name. For verification, I used "Lock", but in addition to checking the file, I could also cancel my check. Any suggestions?

+3
source share
1 answer

Following the “Accepted Verbs”, I used “Send”, “Update” and “Request” my TFS module.

, , checkin, checkout .., , , .

+5

Source: https://habr.com/ru/post/1795322/


All Articles