public IBranchHead CurrentBranch()
 {
     using (Logger.IndentLog("Get current branch"))
     {
         return(_repository.CurrentBranch());
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates an instance of <see cref="HgVersionContext"/>
 /// </summary>
 /// <param name="repository">Mercurial retpository</param>
 public HgVersionContext(IHgRepository repository)
 {
     Repository                 = repository;
     CurrentBranch              = repository.CurrentBranch();
     CurrentCommit              = repository.CurrentCommit();
     FileSystem                 = new FileSystem();
     FullConfiguration          = HgConfigurationProvider.Provide(repository, FileSystem);
     RepositoryMetadataProvider = new HgRepositoryMetadataProvider(repository, FullConfiguration);
     Configuration              = CalculateEffectiveConfiguration();
     CurrentCommitTaggedVersion = CalculateCurrentCommitTaggedVersion();
     IsCurrentCommitTagged      = CurrentCommitTaggedVersion != null;
 }