Skip to content

improvements #2124

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
For now, please have a look at the section in the [README] file.
### Please disclose the use AI…

…if it's *full agent mode* or *multi*-line completions in the PR comment.

For everything else, please have a look at the respective section in the [README] file.

[README]: https://github.com/GitoxideLabs/gitoxide#contributions
6 changes: 1 addition & 5 deletions gix/src/submodule/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,11 +314,7 @@ pub mod status {
/// ordered from cheap to expensive shows that the submodule is dirty.
/// Thus, submodules that are clean will still impose the complete set of computation, as given.
#[doc(alias = "submodule_status", alias = "git2")]
pub fn status(
&self,
ignore: config::Ignore,
check_dirty: bool,
) -> Result<crate::submodule::status::types::Status, Error> {
pub fn status(&self, ignore: config::Ignore, check_dirty: bool) -> Result<Status, Error> {
self.status_opts(ignore, check_dirty, &mut |s| s)
}
/// Return the status of the submodule, just like [`status`](Self::status), but allows to adjust options
Expand Down
Loading