git之 現有站點配置使用hook

2021-07-24 03:55:26 字數 338 閱讀 1287

剛開始**直接是用ftp上傳,並沒有什麼版本控制,後面發現和其他小夥伴修改時十分麻煩,於是乎決定弄個git控制起來

在配置hook的時候要注意一下,一般原有的站點根目錄git使用者是沒有提交修改許可權的,所以要給git許可權

chown -r git:git /path/to/website/root
然後執行一下**:

git add . #提交要提交的檔案

git commit -m 'first commit' #提交到本地倉庫

git push origin master #提交到遠端倉庫

phpstudy使用nginx配置多站點網域名稱

環境是windows,phpstudy,既可以使用apache,也可以使用nginx。但是,在使用nginx配置多站點網域名稱時,有乙個bug,需修改後才能配置成功。方法如下 首先自定義網域名稱到hosts檔案,然後使用phpstudy,其他選項選單 站點網域名稱管理 新增1個或多個網域名稱,埠都是...

git使用配置

配置使用者名稱與郵件 git config global user.email wenkyjong1996 gmail.com git config global user.name wenky檢視配置的資訊 git config global user.name git config global...

git配置使用

本地檔案 快取區 倉庫 一 本地倉庫 1.配置使用者名稱和郵箱 git config global user.name taysem git config global user.email 1580011497 qq.com 2.初始化乙個倉庫 1.建立資料夾 test 2.進入到資料夾test ...