This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#How it works: | |
#switch to p4 branch | |
#get changes from p4 | |
## gets changelist number workspace is synced to | |
## gets list of changelists that is present on server and don't at my workspace | |
#commit change-by-change to p4 branch on behalf of corresponding users | |
#switch back the to previous branch | |
Param( | |
[Switch]$Preview, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading; | |
using System.Threading.Tasks; | |
# Test | |
namespace ConsoleApplication3 | |
{ | |
class ThreadUnsafe | |
{ |