命令行指引
Git 全局设置
git config --global user.name "*****"
git config --global user.email "****@test.com"
创建一个新存储库
git clone http://192.168.1.10:8080/user/apptest.git
cd apptest
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
现有的文件夹
cd existing_folder
git init
git remote add origin http://192.168.1.10:8080/user/apptest.git
git add .
git commit -m "Initial commit"
git push -u origin master
现有的Git存储库
cd existing_repo
git remote rename origin old-origin
git remote add origin http://192.168.1.10:8080/user/apptest.git
git push -u origin --all
git push -u origin --tags
代码拉取
git pull
你的本地Git仓库目录
cd /APP/deploy/
查看当前分支
git branch
新建test-01分支,并切换到test-01分支
git checkout -B test-01
git branch
拉取远程master代码到本地分支
git pull origin master:test-01
修改test.go文件 #这里你可进行任何更新操作。
vim test.go
查看当前状态
git status
添加文件
git add test.go
commit File,-m后是本次提交备注。
git commit -m "更新test.go 文件"
push本次修改,以及本地的test-01分支到远程test-01r分支。
git push origin test-01:test-01