-
-
Notifications
You must be signed in to change notification settings - Fork 605
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
fix: Reverse commit range before yanking #2441
base: master
Are you sure you want to change the base?
fix: Reverse commit range before yanking #2441
Conversation
output from
make check cargo fmt -- --check
cargo clippy --workspace --all-features
warning: the following explicit lifetimes could be elided: 'a
--> scopetime/src/lib.rs:35:6
|
35 | impl<'a> Drop for ScopeTimeLog<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
35 - impl<'a> Drop for ScopeTimeLog<'a> {
35 + impl Drop for ScopeTimeLog<'_> {
|
warning: `scopetime` (lib) generated 1 warning (run `cargo clippy --fix --lib -p scopetime` to apply 1 suggestion)
warning: [email protected]: buildname 'nightly 2024-12-03 (3a861dc)'
Checking asyncgit v0.26.3 (/home/esgariot/Development/gitui/asyncgit)
Checking filetreelist v0.5.2 (/home/esgariot/Development/gitui/filetreelist)
error: it is more idiomatic to use `Option<&T>` instead of `&Option<T>`
--> filetreelist/src/filetreeitems.rs:276:2
|
276 | / fn update_visibility(
277 | | &mut self,
278 | | prefix: &Option<PathBuf>,
| | ---------------- help: change this to: `Option<&PathBuf>`
279 | | start_idx: usize,
... |
325 | | }
326 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ref_option
note: the lint level is defined here
--> filetreelist/src/lib.rs:10:53
|
10 | #![deny(clippy::all, clippy::perf, clippy::nursery, clippy::pedantic)]
| ^^^^^^^^^^^^^^^^
= note: `#[deny(clippy::ref_option)]` implied by `#[deny(clippy::pedantic)]`
error: could not compile `filetreelist` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
error: empty line after doc comment
--> asyncgit/src/sync/config.rs:73:1
|
73 | / /// get string from config
74 | |
| |_
75 | / pub fn get_config_string(
76 | | repo_path: &RepoPath,
77 | | key: &str,
78 | | ) -> Result<Option<String>> {
| |___________________________- the comment documents this function
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
note: the lint level is defined here
--> asyncgit/src/lib.rs:11:9
|
11 | #![deny(clippy::all, clippy::perf, clippy::nursery, clippy::pedantic)]
| ^^^^^^^^^^^
= note: `#[deny(clippy::empty_line_after_doc_comments)]` implied by `#[deny(clippy::all)]`
= help: if the empty line is unintentional remove it
error: the following explicit lifetimes could be elided: 'a
--> asyncgit/src/sync/logwalker.rs:13:6
|
13 | impl<'a> Eq for TimeOrderedCommit<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[deny(clippy::needless_lifetimes)]` implied by `#[deny(clippy::all)]`
help: elide the lifetimes
|
13 - impl<'a> Eq for TimeOrderedCommit<'a> {}
13 + impl Eq for TimeOrderedCommit<'_> {}
|
error: the following explicit lifetimes could be elided: 'a
--> asyncgit/src/sync/logwalker.rs:15:6
|
15 | impl<'a> PartialEq for TimeOrderedCommit<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
15 - impl<'a> PartialEq for TimeOrderedCommit<'a> {
15 + impl PartialEq for TimeOrderedCommit<'_> {
|
error: the following explicit lifetimes could be elided: 'a
--> asyncgit/src/sync/logwalker.rs:21:6
|
21 | impl<'a> PartialOrd for TimeOrderedCommit<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
21 - impl<'a> PartialOrd for TimeOrderedCommit<'a> {
21 + impl PartialOrd for TimeOrderedCommit<'_> {
|
error: the following explicit lifetimes could be elided: 'a
--> asyncgit/src/sync/logwalker.rs:27:6
|
27 | impl<'a> Ord for TimeOrderedCommit<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
27 - impl<'a> Ord for TimeOrderedCommit<'a> {
27 + impl Ord for TimeOrderedCommit<'_> {
|
error: could not compile `asyncgit` (lib) due to 5 previous errors
make: *** [Makefile:92: clippy] Błąd 101 lists errors unrelated to changes this pull request introduced |
Hey @Esgariot I've been looking at this and am having somewhat of a hard time - not so much with your patch, but how the other order could ever have made any sense:
Any insight from your side is appreciated. Still, I see the reasonableness of reversing the order anyhow, even if we only copy individual commit hashes, and want to help your patch along. If you're still interested, would you please rebase onto or merge master in order to resolve conflicts, then rerun |
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
|
|||
### Breaking Changes | |||
* use default shell instead of bash on Unix-like OS [[@yerke](https://github.com/yerke)] ([#2343](https://github.com/extrawurst/gitui/pull/2343)) | |||
* reverse commit range before yanking marked commits, producing `<oldest>^..<newest>` for consecutive commit ranges. [[@Esgariot](https://github.com/Esgariot)] ([#2441](https://github.com/extrawurst/gitui/pull/2441)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not entirely correct - right now (or in case #2577 gets merged), ordering is reversed for all lists of commits, even if they're lists of individual hashes.
Thanks for the input, @naseschwarz! It feels like the good outcome would be to only return |
Thanks for your response. Glad you're still interested in this. :)
Yeah. If you're interested in addressing this, I suggest the correct way to check whether Writing this, I notice that this seems to be another issue with the logic that's currently implemented - a second parent of However, this means that this revwalk may be very large and should probably be moved to asyncgit. |
b5c057d
to
15d85dc
Compare
Produce `<oldest>^..<newest>` when yanking consecutive range. Now, given consecutive marked selection, gitui's selection matches `git log`'s output in commit range.
15d85dc
to
ab80e87
Compare
Hey @naseschwarz , I've done my first iteration of changes for this PR, using Revwalk as suggested. Feel free to take a look if you’re interested! Ran the the code against some repos and it produces the ranges that look like they could be correct 🤞 Review-wise, I'd like to ask about couple of things:
Still on the TODO list:
|
Produce
<oldest>^..<newest>
when yanking consecutive range.Now, given consecutive marked selection, gitui's selection matches
git log
's output in commit range.This Pull Request fixes/closes #2246.
It changes the following:
Produce
<oldest>^..<newest>
when yanking consecutive range.Now, given consecutive marked selection, gitui's selection matches
git log
's output in commit range.I followed the checklist:
make check
without errors