"feat(git_grabber): generate repo description from reflog"

This commit is contained in:
Triston Armstrong 2025-01-12 13:11:37 -05:00
parent 8715e8b753
commit 44c996127b
Signed by: tristonarmstrong
GPG Key ID: A23B48AE45EB6EFE

View File

@ -50,18 +50,10 @@ impl GitGrabber {
String::from(b)
}
pub fn generate_repo_desc(origin_branch: &str, local_branch: &str) -> String {
pub fn generate_repo_desc() -> String {
let curr_branch = GitGrabber::get_current_branch();
let output = Command::new("git")
.args([
"rev-list",
"--left-right",
"--pretty=oneline",
&format!(
"{}...{}",
origin_branch.to_string(),
local_branch.to_string()
),
])
.args(["reflog", "show", &curr_branch])
.output()
.expect("Failed to get repo details");