├── .check-author.yml ├── .github └── workflows │ └── diagnostics.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Command │ ├── AbstractCommandBuilder.php │ ├── AddCommandBuilder.php │ ├── BranchCommandBuilder.php │ ├── CheckoutCommandBuilder.php │ ├── CloneCommandBuilder.php │ ├── CommandBuilderInterface.php │ ├── CommandBuilderTrait.php │ ├── CommitCommandBuilder.php │ ├── ConfigCommandBuilder.php │ ├── DescribeCommandBuilder.php │ ├── FetchCommandBuilder.php │ ├── InitCommandBuilder.php │ ├── LogCommandBuilder.php │ ├── LsRemoteCommandBuilder.php │ ├── MergeCommandBuilder.php │ ├── PullCommandBuilder.php │ ├── PushCommandBuilder.php │ ├── RemoteCommandBuilder.php │ ├── ResetCommandBuilder.php │ ├── RevParseCommandBuilder.php │ ├── RmCommandBuilder.php │ ├── ShortLogCommandBuilder.php │ ├── ShowCommandBuilder.php │ ├── StashCommandBuilder.php │ ├── StatusCommandBuilder.php │ └── TagCommandBuilder.php ├── GitConfig.php ├── GitException.php └── GitRepository.php └── tests ├── GitRepositoryTest.php └── git.zip /.check-author.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/.check-author.yml -------------------------------------------------------------------------------- /.github/workflows/diagnostics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/.github/workflows/diagnostics.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Command/AbstractCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/AbstractCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/AddCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/AddCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/BranchCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/BranchCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/CheckoutCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/CheckoutCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/CloneCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/CloneCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/CommandBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/CommandBuilderInterface.php -------------------------------------------------------------------------------- /src/Command/CommandBuilderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/CommandBuilderTrait.php -------------------------------------------------------------------------------- /src/Command/CommitCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/CommitCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/ConfigCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/ConfigCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/DescribeCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/DescribeCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/FetchCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/FetchCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/InitCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/InitCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/LogCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/LogCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/LsRemoteCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/LsRemoteCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/MergeCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/MergeCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/PullCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/PullCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/PushCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/PushCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/RemoteCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/RemoteCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/ResetCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/ResetCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/RevParseCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/RevParseCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/RmCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/RmCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/ShortLogCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/ShortLogCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/ShowCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/ShowCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/StashCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/StashCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/StatusCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/StatusCommandBuilder.php -------------------------------------------------------------------------------- /src/Command/TagCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/Command/TagCommandBuilder.php -------------------------------------------------------------------------------- /src/GitConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/GitConfig.php -------------------------------------------------------------------------------- /src/GitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/GitException.php -------------------------------------------------------------------------------- /src/GitRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/src/GitRepository.php -------------------------------------------------------------------------------- /tests/GitRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/tests/GitRepositoryTest.php -------------------------------------------------------------------------------- /tests/git.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bit3/git-php/HEAD/tests/git.zip --------------------------------------------------------------------------------