Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sdboyer/cligit
a php wrapper for invoking git cli commands
https://github.com/sdboyer/cligit
Last synced: about 1 month ago
JSON representation
a php wrapper for invoking git cli commands
- Host: GitHub
- URL: https://github.com/sdboyer/cligit
- Owner: sdboyer
- Created: 2009-07-02T18:32:25.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2009-07-05T15:08:28.000Z (over 15 years ago)
- Last Synced: 2023-04-11T19:34:33.413Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 78.1 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# cligit #
The PHP Git CLI library (cligit) is an all-userspace PHP interface that
facilitates easy interaction with the git binary directly from php code. The
philosophy behind the library is to replicate command line-style behavior as
much as possible; in other words, everything you know about using git from a
shell/command line will apply to cligit.## Intentionally Excluded Commands ##
For some git commands, it doesn't really make much sense to make them available
in PHP-land. This is a list of the commands that have been intentionally
excluded, along with the reasons why. Note that all of these are subject to
change, provided a good enough argument :)* gitk -- cligit isn't intended for interactive operation. If you want this,
you're probably better off invoking it directly in your shell.
* git-citool -- cligit isn't intended for interactive operation. If you want
this, you're probably better off invoking it directly in your shell.* git-gui -- cligit isn't intended for interactive operation. If you want this,
you're probably better off invoking it directly in your shell.