git-上传到远程服务器

如, 上传到 42.111.222.33 服务器上.

先登录 43.111.222.33 服务器, 如 test 用户, 新建一个 git 仓库:

1
2
3
4
cd ~
mkdir repo
cd repo
git init

然后到本地, 添加仓库:

1
2
3
cd repo
git remote add test ssh://test@43.111.222.33/home/test/repo
git push test master:main

注意需要先配置好 ssh 相关内容.

若要推送到 checkout 的分支, 还需要设置:

1
git config receive.denyCurrentBranch ignore

此时, 远端还得运行:

1
git commit

才算完成.


git-上传到远程服务器
http://example.com/2023/10/12/git-上传到远程服务器/
作者
Jie
发布于
2023年10月12日
许可协议