git_management/
commands.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
use crate::{is_git_repo};
use std::env::{set_current_dir};
use std::process::{Command, exit};

// Main git commands
pub struct GitCommands;

impl GitCommands {
    pub fn clone(website: &str, author: &str, repo: &str) {
        Command::new("git")
            .arg("clone")
            .arg(format_args!("{}{}{}{}", website, author, "/", repo).to_string().as_str())
            .spawn();
    }

    pub fn checkout_b(repo: &str, branch: &str) {
        if is_git_repo(repo) != true {
            red_ln!("{} is not a git repository", repo);
            exit(0);
        }
        Command::new("git")
            .arg("checkout")
            .arg(branch)
            .spawn();
    }

    pub fn checkout_t(repo: &str, tag: &str) {
        if is_git_repo(repo) != true {
            red_ln!("{} is not a git repository", repo);
            exit(0);
        }
        Command::new("git")
            .arg("checkout")
            .arg(tag)
            .spawn();
    }

    pub fn checkout_nb(repo: &str, branch: &str) {
        if is_git_repo(repo) != true {
            red_ln!("{} is not a git repository", repo);
            exit(0);
        }
        Command::new("git")
            .arg("checkout")
            .arg("-b")
            .arg(repo)
            .spawn();
    }

    pub fn add(&mut self) {
        Command::new("git")
            .arg("add")
            .arg(".")
            .spawn();
    }

    pub fn commit(&mut self, message: &str) {
        Command::new("git")
            .arg("commit")
            .arg("-m")
            .arg(message)
            .spawn();
    }

    pub fn push(&mut self, message: &str) {
        self.add();
        self.commit(message);
        Command::new("git")
            .arg("push")
            .spawn();
    }
}