Skip to content

Commit b31b387

Browse files
GitButler Integration Commit
This is an integration commit for the virtual branches that GitButler is tracking. Due to GitButler managing multiple virtual branches, you cannot switch back and forth between git branches and virtual branches easily. If you switch to another branch, GitButler will need to be reinitialized. If you commit on this branch, GitButler will throw it away. Here are the branches that are currently applied: - update-generate-uuid-func-max-length-and-gofmt (refs/gitbutler/update-generate-uuid-func-max-length-and-gofmt) branch head: dc83185f32df45a9a97d857adcaca0e3e99f8c3b Your previous branch was: d28cd0d The sha for that commit was: d28cd0d For more information about what we're doing here, check out our docs: https://docs.gitbutler.com/features/virtual-branches/integration-branch
1 parent d28cd0d commit b31b387

File tree

14 files changed

+861
-708
lines changed

14 files changed

+861
-708
lines changed

Diff for: Client/auth/auth.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
package auth
22

33
import (
4-
"strings"
54
"encoding/base64"
65
"encoding/json"
76
"fmt"
87
"io/ioutil"
9-
"os"
108
"net/http"
9+
"os"
10+
"strings"
11+
1112
environment "github.com/CoreViewInc/CoreNiko/environment"
1213
shared "github.com/CoreViewInc/CoreNiko/shared"
1314
)
@@ -157,4 +158,4 @@ func ReadEncodedCredentialsFromFile() (string, string, error) {
157158
}
158159

159160
return "", "", fmt.Errorf("no credentials found in Docker config.json")
160-
}
161+
}

Diff for: Client/cmd/docker.go

-254
This file was deleted.

Diff for: Client/compress/compress.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ import (
44
"archive/tar"
55
"compress/gzip"
66
"fmt"
7-
"github.com/spf13/afero"
87
"io"
98
"os"
109
"path/filepath"
10+
11+
"github.com/spf13/afero"
1112
)
1213

1314
type Compressor struct {
@@ -83,4 +84,4 @@ func (c *Compressor) Compress(outputPath string) error {
8384
}
8485

8586
return nil
86-
}
87+
}

0 commit comments

Comments
 (0)