Exemplo n.º 1
0
 /// <summary>
 /// Gets a <see cref="HgLogQuery"/> that selects commits witch are not only tagging commits.
 /// </summary>
 public HgLogQuery ExceptTaggingCommits()
 {
     return(Revision.Except(
                RevSpec.Affects(".hgtags") &
                RevSpec.Grep("Added tag .+ for changeset .+") &
                !RevSpec.Tagged()));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Gets a <see cref="HgLogQuery"/> that selects commits witch are not only tagging commits.
 /// </summary>
 public HgLogQuery ExceptTaggingCommits()
 {
     return(Revision.Except(
                RevSpec.Affects(".hgtags") &
                !RevSpec.Tagged()));
 }