# prodsys_go **Repository Path**: foralark/prodsys_go ## Basic Information - **Project Name**: prodsys_go - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-12 - **Last Updated**: 2024-10-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # prodsys_go ``` 简易的命令行入门教程: Git 全局设置: git config --global user.name "foralark" git config --global user.email "12651714+foralark@user.noreply.gitee.com" 创建 git 仓库: mkdir prodsys_go cd prodsys_go git init touch README.md git add README.md git commit -m "first commit" git remote add origin git@gitee.com:foralark/prodsys_go.git git push -u origin "master" 已有仓库? cd existing_git_repo git remote add origin git@gitee.com:foralark/prodsys_go.git git push -u origin "master" ``` go env -w GOPROXY="https://goproxy.cn,direct" https://dl.google.com/go/go1.23.1.linux-amd64.tar.gz ``` download golang: https://golang.google.cn/dl/ https://go.dev/ ```