建立 Local Git Repository
實務上開發 Laravel 會搭配 Git 做版本控制,先在本機建立 local repository。
VCS -> Import ino Version Control -> Create Git Repository
建立 Git repository。22相當於git init。
選擇 local repository 目錄,也就是目前專案目錄。
下方出現Version Control,並顯示有檔案尚未受 Git 管理,按browse顯示檔案。
選擇專案目錄,按+(Add to VCS) 將檔案加入 stage。33相當於git add .。
綠色檔案為加入 stage 的檔案,按VCS(Commit Changes)。
不要選擇Perform code analysis。
Commit Message: Initial commit。
按Commit寫檔案寫入 local repository。44相當於git commit -m "Initial commit"。
Commit 成功後,下方會顯示xx files committed : initial commit。
建立 Remote GitHub Repository
將 local repository 上傳至 GitHub 建立 remote repository。
PhpStorm -> Preferences -> Version Control -> GitHub
設定 GitHub 帳號。
VCS -> Import into Version Control -> Share Project on GitHub
將專案發佈到 GitHub。
預設會使用專案名稱為 remote GitHub repository 名稱。
在 GitHub 建立成功。
在 GitHub 已經看到剛剛上傳的專案。
修改並 Push 到 GitHub
將welcome.blade.php加以修改,由Laravel 5改成Hello Laravel。
點擊下方的Version control標籤,按VCS將此次變更加以 commit。
填入 commit message 後,按Commit and Push。
按Push將直接 push 到 GitHub。
Push 到 GitHub 成功。