feat(pr_handler): Create PR title and description generation rules #1
@ -8,6 +8,7 @@ pub struct GitGrabber {
|
||||
|
||||
impl GitGrabber {
|
||||
pub fn new() -> Self {
|
||||
println!("{:?}", current_dir().unwrap());
|
||||
GitGrabber {
|
||||
repo: None,
|
||||
dir: current_dir().unwrap(),
|
||||
|
15
src/main.rs
15
src/main.rs
@ -13,15 +13,12 @@ fn main() {
|
||||
|
||||
let mut gg = GitGrabber::new();
|
||||
gg.get_repo();
|
||||
|
||||
gg.repo.unwrap().revwalk().unwrap().for_each(|x| {
|
||||
if x.is_ok() {
|
||||
println!("{:?}", x.unwrap())
|
||||
} else {
|
||||
println!("No rev")
|
||||
}
|
||||
});
|
||||
|
||||
gg.repo
|
||||
.unwrap()
|
||||
.reflog("head")
|
||||
.unwrap()
|
||||
.iter()
|
||||
.for_each(|x| println!("{:?}", x.message()));
|
||||
return ();
|
||||
|
||||
// let res_text = transporter.make_request(a).unwrap().text().unwrap();
|
||||
|
Loading…
Reference in New Issue
Block a user