* git clone https://github.com/suhanyujie/goPractice.git practice
- 在仓库根目录下,
go build -o a.exe **/xxx.go ...
- 执行就可以直接在仓库根目录下,
./a.exe param ...
在执行git pull的时候,提示
`fatal: refusing to merge unrelated histories`
解决方法:
git pull --allow-unrelated-histories
vi ~/.gitconfig
; 然后在文件中直接修改即可