go-lang script via https://github.com/canha/golang-tools-install-script as subtree
9 lines
329 B
Bash
Executable File
9 lines
329 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# the command used to initialize our subtree
|
|
#git subtree add --prefix golang-install https://github.com/canha/golang-tools-install-script.git master --squash
|
|
|
|
# the command used to update our subtree
|
|
git subtree pull --prefix golang-install https://github.com/canha/golang-tools-install-script.git master --squash
|
|
|