*添加远程地址的
git remote add origin ssh://git@192.168.1.118:822/dev/hello-word.git
*查看本地添加了哪些远程地址
$ git remote -v
origin ssh://git@192.168.1.118:822/dev/hello-word.git(push)
*删除本地指定的远程地址
git remote remove origin
推送所有分支
git push -u origin --all
*添加远程地址的
git remote add origin ssh://git@192.168.1.118:822/dev/hello-word.git
*查看本地添加了哪些远程地址
$ git remote -v
origin ssh://git@192.168.1.118:822/dev/hello-word.git(push)
*删除本地指定的远程地址
git remote remove origin
推送所有分支
git push -u origin --all