Skip to content

Commit 9e83b87

Browse files
authored
Use Git.jl instead of GitCommand.jl (#15)
1 parent a2891ab commit 9e83b87

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ authors = ["Dilum Aluthge", "contributors"]
44
version = "1.0.0"
55

66
[deps]
7-
GitCommand = "49b5b516-ca3f-4003-a081-42bdcf55082d"
7+
Git = "d7ba0133-e1db-5d97-8f8c-041e4b3a1eb2"
88
ReplMaker = "b873ce64-0db9-51f5-a568-4457d8e49576"
99

1010
[compat]
11-
GitCommand = "2.2.1"
11+
Git = "1"
1212
ReplMaker = "0.2.4"
1313
julia = "1.6"
1414

src/GitRepl.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module GitRepl
22

3-
import GitCommand
3+
import Git
44
import ReplMaker
55

66
export gitrepl
@@ -12,7 +12,7 @@ const GIT_REPL_MODE_START_KEY = ','
1212
function _gitrepl_parser(repl_input::AbstractString)
1313
return quote
1414
repl_input = $(Expr(:quote, repl_input))
15-
run(`$(GitRepl.GitCommand.git()) $(split(repl_input))`)
15+
run(`$(GitRepl.Git.git()) $(split(repl_input))`)
1616
return nothing
1717
end
1818
end

0 commit comments

Comments
 (0)