在伺服器建立 git 儲存庫

Undefined443發表於2024-11-01

在伺服器 user@remote

mkdir repo.git
cd repo.git
git init --bare

在本地:

git remote add origin ssh://user@remote:/path/to/repo.git
git push

相關文章