GitUI.RevisionGrid.ShowRemoteRef C# (CSharp) Method

ShowRemoteRef() public method

public ShowRemoteRef ( IGitRef r ) : bool
r IGitRef
return bool
        public bool ShowRemoteRef(IGitRef r)
        {
            if (r.IsTag)
                return AppSettings.ShowSuperprojectTags;

            if (r.IsHead)
                return AppSettings.ShowSuperprojectBranches;

            if (r.IsRemote)
                return AppSettings.ShowSuperprojectRemoteBranches;

            return false;
        }
RevisionGrid