Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cargo/sources/git/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ impl<'a> GitCheckout<'a> {
format!("failed to fetch submodule `{name}` from {child_remote_url}",)
})?;

// Clone and reset to the head commmit
// Clone and reset to the head commit
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are open to rebasing/reorganizing your commit history throughout the iterations of a pull request. And personally I think this kind of commit should be squashed into wherever made this typo. That would help get a more understandable/traceable git commit history

let (_, guard) = GitCheckout::clone_into(&repo.path(), &db, actual_rev, gctx)
.with_context(|| {
let name = child.name().unwrap_or("");
Expand Down