AppHarbor.GitRepositoryConfigurer.Unconfigure C# (CSharp) Method

Unconfigure() public method

public Unconfigure ( ) : void
return void
        public void Unconfigure()
        {
            try
            {
                _gitCommand.Execute("remote rm appharbor");
            }
            catch (GitCommandException)
            {
                throw new RepositoryConfigurationException("Git remote could not be removed.");
            }
        }