Git.Core.BlobTreeEntry.SetExecutable C# (CSharp) Method

SetExecutable() public method

public SetExecutable ( bool setExec ) : void
setExec bool
return void
        public void SetExecutable(bool setExec)
        {
            mode = setExec ? GitFileMode.ExecutableFile : GitFileMode.RegularFile;
        }