Skip to content

Commit

Permalink
goodbye git-core, hello git-repository
Browse files Browse the repository at this point in the history
It's more specfic, and it will be easier to focus on what should
be init.

'core' is more like a catch-all and can be confusing to everyone.
  • Loading branch information
Byron committed Jun 25, 2020
1 parent 08b6b86 commit 7cec2b6
Show file tree
Hide file tree
Showing 22 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test = false
doctest = false

[dependencies]
git-core = { version = "0.1.0", path = "git-core" }
git-repository = { version = "0.1.0", path = "git-repository" }
anyhow = "1.0.31"
structopt = "0.3.14"

Expand All @@ -28,7 +28,7 @@ incremental = false
members = [
"git-object",
"git-odb",
"git-core",
"git-repository",
"git-transport",
"demos"
]
2 changes: 1 addition & 1 deletion git-core/Cargo.toml → git-repository/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "git-core"
name = "git-repository"
version = "0.1.0"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
publish = false
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn main() -> Result<()> {
let args = options::Args::from_args();
match args.cmd {
options::Subcommands::Init => {
git_core::init::repository().with_context(|| "Repository initialization failed")
git_repository::init::repository().with_context(|| "Repository initialization failed")
}
}?;
Ok(())
Expand Down

0 comments on commit 7cec2b6

Please sign in to comment.