Skip to content
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

Jump to commit via sha #1818

Merged
merged 40 commits into from
Aug 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
0e7cbd0
Start integrating jump to commit popup in the app
AmmarAbouZor Aug 19, 2023
ac6421d
Building & Integrating Jump to Commit in the app
AmmarAbouZor Aug 20, 2023
5d08c09
Implementing jump to commit jump commit popup
AmmarAbouZor Aug 20, 2023
a0bbf70
Implementing Jump to commit
AmmarAbouZor Aug 20, 2023
5989c24
Jump To Commit: Add error handling
AmmarAbouZor Aug 20, 2023
a6bc97c
Jump to commit: short revs can be used
AmmarAbouZor Aug 20, 2023
a6253a9
Jump to commit: Text improvements & refactoring
AmmarAbouZor Aug 20, 2023
648efe0
Jump to Commit: Change default keybinding
AmmarAbouZor Aug 20, 2023
03170a1
Jump to commit: Added demo
AmmarAbouZor Aug 20, 2023
a209381
Jump to commit: Remove unused demo
AmmarAbouZor Aug 20, 2023
9a12404
Jump to commit: Clippy Fixes
AmmarAbouZor Aug 20, 2023
70cfbab
Jump to commit: Redraw after jump
AmmarAbouZor Aug 20, 2023
0f2c67b
Merge branch 'master' into jump-to-commit-via-sha
AmmarAbouZor Aug 22, 2023
a5bd646
Merge branch 'master' into jump-to-commit-via-sha
AmmarAbouZor Aug 22, 2023
1409f93
Embed jump to commit hash in log search popup
AmmarAbouZor Aug 22, 2023
18b82a8
Remove jump to commit popup
AmmarAbouZor Aug 22, 2023
1e0482f
Small refactoring: Remove unnecessary brackets
AmmarAbouZor Aug 22, 2023
d6d7d55
Jump to commit: Refactoring
AmmarAbouZor Aug 23, 2023
082af1d
Jump to Commit Refactoring: change arguments order
AmmarAbouZor Aug 23, 2023
3d9ab22
Jump to commit: Add unit test
AmmarAbouZor Aug 23, 2023
6eaa68d
Jump to commit: Add item to CHANGELOG
AmmarAbouZor Aug 23, 2023
1dbe461
Revert "Remove jump to commit popup"
AmmarAbouZor Aug 23, 2023
a13cb56
Jump to commit: Fix in restored popup
AmmarAbouZor Aug 23, 2023
1000ecd
Jump to commit: Revert log search popup
AmmarAbouZor Aug 23, 2023
984ba9c
Embed Jump Commit in search popup as separate mode
AmmarAbouZor Aug 24, 2023
f2a5137
Remove Jump to commit separate component again
AmmarAbouZor Aug 24, 2023
57c7ad8
Jump to commit: Separate event handling
AmmarAbouZor Aug 24, 2023
1b807d3
Jump to Commit: Apply validation visualization
AmmarAbouZor Aug 24, 2023
8d46893
Fix log search popup text box highlighting
AmmarAbouZor Aug 24, 2023
62a5e49
Jump to Commit: Clippy Fixes
AmmarAbouZor Aug 24, 2023
1042d3c
Merge branch 'master' into jump-to-commit-via-sha
AmmarAbouZor Aug 26, 2023
fd68863
Add scope_time to CommitId::from_revision
AmmarAbouZor Aug 26, 2023
9abfc2f
Jump to Commit: Changes after review
AmmarAbouZor Aug 26, 2023
e9263d8
Jump to Commit: Changes after review
AmmarAbouZor Aug 26, 2023
541af84
Find Commit Sha: Use RepoPathRef
AmmarAbouZor Aug 26, 2023
1a25f99
Rewire LogSearchPopup mode switch logic
AmmarAbouZor Aug 26, 2023
7dccae8
Commit Sha Refactoring: Unify names
AmmarAbouZor Aug 27, 2023
36dce88
Show validation message when sha is invalid
AmmarAbouZor Aug 27, 2023
9c034b3
Commit SHA: Clippy fixes
AmmarAbouZor Aug 27, 2023
df70cee
Commit SHA: Change command text
AmmarAbouZor Aug 27, 2023
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* added to [anaconda](https://anaconda.org/conda-forge/gitui) [[@TheBlackSheep3](https://github.com/TheBlackSheep3/)] ([#1626](https://github.com/extrawurst/gitui/issues/1626))
* visualize empty line substituted with content in diff better ([#1359](https://github.com/extrawurst/gitui/issues/1359))
* checkout branch works with non-empty status report [[@lightsnowball](https://github.com/lightsnowball)] ([#1399](https://github.com/extrawurst/gitui/issues/1399))
* jump to commit by SHA [[@AmmarAbouZor](https://github.com/AmmarAbouZor)] ([#1818](https://github.com/extrawurst/gitui/pull/1818))

### Fixes
* fix commit dialog char count for multibyte characters ([#1726](https://github.com/extrawurst/gitui/issues/1726))
Expand Down
43 changes: 42 additions & 1 deletion asyncgit/src/sync/commits_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@ impl CommitId {
pub fn get_short_string(&self) -> String {
self.to_string().chars().take(7).collect()
}

/// Tries to retrieve the `CommitId` form the revision if exists in the given repository
pub fn from_revision(
repo_path: &RepoPath,
revision: &str,
) -> Result<Self> {
scope_time!("CommitId::from_revision");

let repo = repo(repo_path)?;

let commit_obj = repo.revparse_single(revision)?;
Ok(commit_obj.id().into())
}
}

impl ToString for CommitId {
Expand Down Expand Up @@ -144,7 +157,7 @@ mod tests {
error::Result,
sync::{
commit, stage_add_file, tests::repo_init_empty,
utils::get_head_repo, RepoPath,
utils::get_head_repo, CommitId, RepoPath,
},
};
use std::{fs::File, io::Write, path::Path};
Expand Down Expand Up @@ -221,4 +234,32 @@ mod tests {

Ok(())
}

#[test]
fn test_get_commit_from_revision() -> Result<()> {
let (_td, repo) = repo_init_empty().unwrap();
let root = repo.path().parent().unwrap();
let repo_path: &RepoPath =
&root.as_os_str().to_str().unwrap().into();

let foo_file = Path::new("foo");
File::create(root.join(foo_file))?.write_all(b"a")?;
stage_add_file(repo_path, foo_file).unwrap();
let c1 = commit(repo_path, "subject: foo\nbody").unwrap();
let c1_rev = c1.get_short_string();

assert_eq!(
CommitId::from_revision(repo_path, c1_rev.as_str())
.unwrap(),
c1
);

const FOREIGN_HASH: &str =
"d6d7d55cb6e4ba7301d6a11a657aab4211e5777e";
assert!(
CommitId::from_revision(repo_path, FOREIGN_HASH).is_err()
);

Ok(())
}
}
1 change: 1 addition & 0 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ impl App {
key_config.clone(),
),
log_search_popup: LogSearchPopupComponent::new(
repo.clone(),
&queue,
theme.clone(),
key_config.clone(),
Expand Down
Loading