「專案相關的筆記」修訂間的差異

出自Tan Kian-ting的維基
跳至導覽 跳至搜尋
(建立內容為「{{Nav|資訊}} 管理程式碼project相關的筆記。 ===在遠端新增repo=== You have to set the ssh key between server and client first. <pre> cd /var/www…」的新頁面)
 
行 1: 行 1:
{{Nav|資訊}}
{{Nav|程式語言、邏輯學|Projects}}


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

於 2023年9月20日 (三) 20:16 的修訂

管理程式碼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;

然後在本機端新增:

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;

其他