-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Biscuit CLI - clone command will notify user about implicit host…
… assumptions, add new dev mode flag
- Loading branch information
Showing
3 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .git import Git | ||
from .git import * | ||
from .releases import Releases | ||
from .repo import GitRepo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
## Feature | ||
A CLI application for Biscuit using Python click (suggestions for other CLI libs open). | ||
|
||
Support for the following commands: | ||
### Commands | ||
- `biscuit --help` - Show help for the Biscuit CLI | ||
- `biscuit --version` - Show the version of Biscuit | ||
- `biscuit --dev` - Start Biscuit in development mode | ||
- `biscuit clone [URL]` - Clone a Biscuit repository | ||
- `biscuit diff [FILE1] [FILE2]` - Show the differences between the local and remote Biscuit repositories | ||
|
||
|
||
Extension development commands: | ||
### Extension dev commands (not implemented) | ||
- `biscuit extension create` - Create a new extension | ||
- `biscuit extension test` - Test an extension | ||
- `biscuit extension test` - Test an extension |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters