## custom prompt ## Aaron Bockelie function prompt # Change prompt so it will show the logged in perforce depot. I apologize in advance if I just hammered your whizbang prompt function. # you can comment this out or just remove it if you don't like it. (or integrate it into your own custom prompt) { if ($env:p4server -eq $null) { $env:computername + "\" + (get-location) + "> " } else { $env:p4server + ":" + $env:perforceport + "-" + (get-location) + "> " } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 8410 | Aaron Bockelie |
Root checkin, Perforce Powershell wrapper. Still lots of work to be done, namely documentation and deployment tools, for instance, get-help needs work on the majority of these tools. Additionally, the /lib structure needs a little bit of condensation, probably into major groups (depot, userspec, clientspec, group management, and so on) that way function family can exist under each resource. |