├── CLAUDE.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── git-artifact ├── logo.png └── src ├── Commands └── ArtifactCommand.php ├── Exception ├── BranchNotFoundException.php ├── GitArtifactException.php └── GitException.php ├── Git └── ArtifactGitRepository.php ├── Traits ├── FilesystemTrait.php ├── LoggerTrait.php └── TokenTrait.php └── app.php /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/composer.lock -------------------------------------------------------------------------------- /git-artifact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/git-artifact -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/logo.png -------------------------------------------------------------------------------- /src/Commands/ArtifactCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/src/Commands/ArtifactCommand.php -------------------------------------------------------------------------------- /src/Exception/BranchNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/src/Exception/BranchNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/GitArtifactException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/src/Exception/GitArtifactException.php -------------------------------------------------------------------------------- /src/Exception/GitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/src/Exception/GitException.php -------------------------------------------------------------------------------- /src/Git/ArtifactGitRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/src/Git/ArtifactGitRepository.php -------------------------------------------------------------------------------- /src/Traits/FilesystemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/src/Traits/FilesystemTrait.php -------------------------------------------------------------------------------- /src/Traits/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/src/Traits/LoggerTrait.php -------------------------------------------------------------------------------- /src/Traits/TokenTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/src/Traits/TokenTrait.php -------------------------------------------------------------------------------- /src/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drevops/git-artifact/HEAD/src/app.php --------------------------------------------------------------------------------