Github is where we will store all our code and collaborate on it with others. Make an account here: https://github.com/
git
is a way to keep track of your projects as they change.
FROM golang | |
ADD main.go ./ | |
RUN go build -o greeter main.go | |
CMD ["./greeter"] |
Github is where we will store all our code and collaborate on it with others. Make an account here: https://github.com/
git
is a way to keep track of your projects as they change.