Skip to content

Commit

Permalink
Package git_split.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Artamus committed Jul 30, 2024
1 parent 7cef2ca commit d54674c
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions packages/git_split/git_split.0.0.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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 <[email protected]>"]
authors: ["Markus Loide <[email protected]>"]
license: "Apache-2.0"
homepage: "https://github.com/Artamus/git-split"
bug-reports: "https://github.com/Artamus/git-split/issues"
depends: [
"ocaml" {>= "4.13"}
"dune" {>= "3.15"}
"re"
"notty"
"feather" {>= "0.3.0"}
"ppx_deriving"
"alcotest" {with-test}
"odoc" {with-doc}
]
conflicts: [
"result" {< "1.5"}
]
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"
url {
src: "https://github.com/Artamus/git-split/archive/refs/tags/0.0.1.tar.gz"
checksum: [
"md5=c2ae0a22df057de6dbef09886c8efd2f"
"sha512=fc753a4b06e8bc3c8be373a5b8108801532371a664b813d8373da3f4270f74f066e9c46437c0ac4c7b2a1c3ad0fff0309a8e51a273e980f7dbe190dfe8bcef78"
]
}

0 comments on commit d54674c

Please sign in to comment.