git-cli is now not dependend on rash anymore
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#lang rash
|
||||
#lang racket/base
|
||||
|
||||
(require racket-makefile/rash
|
||||
(require racket-makefile
|
||||
package-zipper
|
||||
net/sendurl
|
||||
)
|
||||
|
||||
@@ -91,6 +91,10 @@ behavior:
|
||||
Git is searched on `PATH`. Git itself remains responsible for remotes,
|
||||
credentials, SSH keys, pull strategy, and other repository configuration.
|
||||
|
||||
## Rash integration
|
||||
|
||||
Rash integration is provided by the separate `rash-git-cli` package. The `git-cli` package itself has no dependency on Rash or Linea.
|
||||
|
||||
## Commands
|
||||
|
||||
The package registers wrappers for commands where git-cli adds useful behavior,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
(define collection "git-cli")
|
||||
(define pkg-desc "Command-line-like Git operations for Racket, interface to the git cli command")
|
||||
(define version "0.4.4")
|
||||
(define version "0.4.7")
|
||||
(define pkg-authors '("Hans Dijkema"))
|
||||
(define license 'MIT)
|
||||
|
||||
@@ -13,11 +13,12 @@
|
||||
"racket-index"
|
||||
"scribble-lib"
|
||||
"net-lib"
|
||||
))
|
||||
))
|
||||
|
||||
(define build-deps
|
||||
'("rackunit-lib"
|
||||
"racket-doc"))
|
||||
"racket-doc"
|
||||
))
|
||||
|
||||
(define scribblings
|
||||
'(("scribblings/git-cli.scrbl" () ("git-cli"))))
|
||||
|
||||
@@ -99,6 +99,10 @@ registered wrapper, @racket[git*] can also be used with those commands.
|
||||
@racket[gt] is retained as a compatibility alias for @racket[git*].
|
||||
}
|
||||
|
||||
@section{Rash integration}
|
||||
|
||||
Rash integration is provided by the separate @tt{rash-git-cli} package. The @racketmodname[git-cli] package itself does not depend on Rash or Linea.
|
||||
|
||||
@section{Provided commands}
|
||||
|
||||
@defproc[(git-init [argument any/c] ...) boolean?]{
|
||||
|
||||
Reference in New Issue
Block a user