-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgit.go
83 lines (72 loc) · 2.04 KB
/
git.go
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
73
74
75
76
77
78
79
80
81
82
83
package main
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"os"
"os/exec"
"strings"
"github.com/pkg/browser"
)
func installGit() {
commands := [][]string{
{"git", "config", "--global", "diff.tool", "delta"},
{"git", "config", "--global", "difftool.prompt", "false"},
{"git", "config", "--global", "difftool.delta.cmd", `delta "$LOCAL" "$REMOTE" "$MERGED"`},
}
for _, c := range commands {
fmt.Println(strings.Join(c, " "))
o, _ := exec.Command(c[0], c[1:]...).CombinedOutput()
fmt.Print(string(o))
}
}
// known issue: this does not remove the gitconfig section if the unset
// operation causes the section to become empty.
func uninstallGit() {
commands := [][]string{
{"git", "config", "--global", "--unset", "diff.tool"},
{"git", "config", "--global", "--unset", "difftool.prompt"},
{"git", "config", "--global", "--remove-section", "difftool.delta"},
}
for _, c := range commands {
fmt.Println(strings.Join(c, " "))
o, _ := exec.Command(c[0], c[1:]...).CombinedOutput()
fmt.Print(string(o))
}
}
type GistRequest struct {
Description string `json:"description"`
Public bool `json:"public"`
Files map[string]map[string]string `json:"files"`
}
type GistResponse struct {
Files map[string]struct {
RawURL string `json:"raw_url"`
} `json:"files"`
}
const gistURL = "https://api.github.com/gists"
func uploadGist(data []byte) {
b, _ := json.Marshal(&GistRequest{
Description: "diff created by delta https://github.com/octavore/delta",
Public: false,
Files: map[string]map[string]string{
"diff.html": map[string]string{"content": string(data)},
},
})
resp, err := http.Post(gistURL, "application/json", bytes.NewBuffer(b))
if err != nil {
fmt.Fprintln(os.Stderr, resp)
return
}
r := &GistResponse{}
err = json.NewDecoder(resp.Body).Decode(r)
if err != nil {
fmt.Fprintln(os.Stderr, err)
return
}
url := strings.Replace(r.Files["diff.html"].RawURL,
"gist.githubusercontent", "cdn.rawgit", 1)
fmt.Println(url)
_ = browser.OpenURL(url)
}