(假定在/home/git
目录下创建仓库)
git init --bare sample.git
git clone git@192.168.0.100:/home/git/sample.git
# 查看远程仓库绑定
git remote -v
# 解除远程仓库绑定
git remote -remove origin
# 绑定远程仓库
git remote -add origin git@192.168.0.100:/home/git/sample.git
# 查看本地更改
git status
# 添加更改
git add -u
# 提交更改
git commit -m "提交说明"
# 推送
git push origin master
git pull origin master