Mislav Marohnić

Results 921 comments of Mislav Marohnić

Hi I can't help you with linux commands and making docker containers. You'll have to figure it out on your own. For what it's worth, this script installs hub into...

I'm sorry for my terse reply. I'm aware that my installation instructions are almost identical to yours. But I must assure you, the installation script works: ```docker FROM alpine:3.8 RUN...

I've compiled hub in an `golang:alpine` container and copied the build product into a fresh `alpine` container. The result is a 28MB image: ```docker FROM golang:alpine as builder RUN apk...

Thank you @philwinder @andyneff. I've also been reading https://medium.com/@diogok/on-golang-static-binaries-cross-compiling-and-plugins-1aed33499671 which suggests: ```sh CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a \ -tags netgo -ldflags '-w -extldflags "-static"' -o mybin *.go ``` Now...

> Some projects go as far as to release a dynamic-glibc, dynamic-musl, and static-go variant. > You can also statically compile using C libs instead of `netgo` /w `-linkmode external`...

@ChristophShyper Nothing about how `hub` works is appropriate when run from within a container. If you are running hub in a container, the functionality of hub is severely degraded. See...

Does any hub command show up, e.g. `pull-request`? Check with `hub pu`

Is hub aliased as "git"? See https://github.com/github/hub/issues/1792#issuecomment-403413131

> Otherwise, there is no way to detect the difference between `:wq` and `:q!`. To avoid having to check timestamps, we could compare the _contents_ of the file before and...