-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-split.opam
More file actions
34 lines (34 loc) · 1.12 KB
/
Copy pathgit-split.opam
File metadata and controls
34 lines (34 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A tool to split a git commit into multiple"
description:
"When one commit becomes too large and needs to be split up, the general git workflow that involves resetting the commit and then using interactive staging to generate multiple commits from it can be quite cumbersome. In addition to that, the git interactive staging tool's UX can be quite bad, therefore this tools aims to provide this functionality in a nicer way."
maintainer: ["Markus Loide <markusloide+github@gmail.com>"]
authors: ["Markus Loide <markusloide+github@gmail.com>"]
license: "Apache-2.0"
homepage: "https://github.com/Artamus/git-split"
bug-reports: "https://github.com/Artamus/git-split/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.15"}
"angstrom" {>= "0.16.1"}
"notty"
"ppx_deriving"
"alcotest" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/Artamus/git-split.git"