Skip to content

Instantly share code, notes, and snippets.

View rzkhosroshahi's full-sized avatar
🪖

Reza Khosroshahi rzkhosroshahi

🪖
View GitHub Profile
@asukakenji
asukakenji / 0-go-os-arch.md
Last active May 22, 2024 12:01
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@JamesMGreene
JamesMGreene / gitflow-breakdown.md
Last active May 23, 2024 12:17
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository