BuildRelease.Program.PushChanges C# (CSharp) Method

PushChanges() private static method

private static PushChanges ( ) : void
return void
        private static void PushChanges()
        {
            CommandLine.WriteLine("{{white}} =======================================");
            CommandLine.WriteLine("{{white}} Pushing changes");
            CommandLine.WriteLine("{{white}} =======================================");

            foreach (Hg repository in AllRepositories)
            {
                repository.Push();
            }

            CommandLine.WriteLine();
        }