Kudu.Core.SourceControl.Git.LibGit2SharpRepository.UpdateRef C# (CSharp) Method

UpdateRef() public method

public UpdateRef ( string toBeUpdatedToAlias ) : void
toBeUpdatedToAlias string
return void
        public void UpdateRef(string toBeUpdatedToAlias)
        {
            UpdateRawRef(string.Format("refs/heads/{0}", "master"), string.Format("refs/heads/{0}", toBeUpdatedToAlias));
        }