專案相關的筆記

於 2023年9月30日 (六) 17:42 由 Tankianting討論 | 貢獻 所做的修訂
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)

管理程式碼project相關的筆記。

在遠端新增repo

You have to set the ssh key between server and client first.

cd /var/www/git;
mkdir repo;
cd repo;
git init --bare --share;
git update-server-info;

然後在本機端新增:

git commit -m "example";
git remote add origin user@example.info:/var/www/git;
git push origin master;

記得要開啓 .git/hooks,然後:cp post-update.sample post-update; chmod u+x post-update;

GitWeb 的設定等

其他