sync
[gitlive] / GitBranch.vala
1 /**
2 represent a git branch..
3 Branching / Gitlive:
4
5 Does repo require branching? - flag in config?
6 ** list of repo's ?? with ability to turn on/off
7
8 Start editing without branch?
9 -> show prompt to start branch
10 -> flag a ticket? optional ??
11
12 Once editing branch...
13 -> merge with squash / ticket...
14 ** show list of repo's with 'working' branches?
15 ** select some/all to merge with a issue fix..
16
17 ?? closing ticket in system ??
18 -> done by the ui?
19
20 need to push all? / fetch all?
21
22
23 list of repo's
24
25
26 */
27
28 public class GitBranch : Object
29 {
30         public GitRepo repo;
31         
32         public bool active = false;
33         public string lastrev = "";
34         public string name = "";
35         public string remote = "";
36         public string remoterev = "";
37         
38         public GitBranch(GitRepo repo)
39         {
40                 this.repo = repo;
41         }
42
43         public bool parseBranchListItem(string str)
44         {
45                 if (str.length  < 1) {
46                         return false;
47                 }
48                 this.active = str[0] == '*';
49                 
50                 var parts = Regex.split_simple ("[ \t]+", str.substring(2).strip());
51                 if (parts[1] == "->") { // it's an alias.. eg. remotes/origin/HEAD -> origin/master..
52                         return false;
53                 }
54                 
55                 this.lastrev = parts[1];
56                 if (parts[0].has_prefix("remotes/")) {
57                         this.remote = parts[0];
58                 } else {
59                         this.name = parts[0];
60                 }
61             return true;
62         }
63         public string  realName()
64         {
65                 return this.name == "" ? this.remote : this.name;
66         }
67         
68         public void create()
69         {
70         
71         }
72         
73 }
74         
75