標籤:
使用Visual Studio Code進行Nodejs開發充滿了便利,為了更好的進行開發工作,有必要使用Github進行代碼管理。
Visual Studio Code已經整合了GIT組件:
https://github.com/git-for-windows/git/releases/download/v2.8.1.windows.1/Git-2.8.1-64-bit.exe
下載並安裝好,後開始配置GITHUB
1.設定全域Git使用者名稱
$ git config --global user.name mengkzhaoyun$ git config --global user.email [email protected]
2.映射到本地目錄
$ cd D:\Libraries\Documents\Visual Studio Code$ git clone https://github.com/Mengkzhaoyun/HZW.gitCloning into ‘HZW‘...remote: Counting objects: 1690, done.remote: Compressing objects: 100% (1441/1441), done.remote: Total 1690 (delta 212), reused 1675 (delta 200), pack-reused 0Receiving objects: 100% (1690/1690), 6.74 MiB | 58.00 KiB/s, done.Resolving deltas: 100% (212/212), done.Checking connectivity... done.Checking out files: 100% (1643/1643), done.
3.檢查是否設定好了
$ git remote -vorigin https://github.com/Mengkzhaoyun/HZW.git (fetch)origin https://github.com/Mengkzhaoyun/HZW.git (push)
如果不存在以上資訊可以開啟項目目錄重新對應
$ cd D:\Libraries\Documents\Visual Studio Code\HZW$ git init$ git remote add origin https://github.com/Mengkzhaoyun/HZW.git
4.修改代碼,Commit , Push
Commit提交變更到本地,
Push才是提交更新至github伺服器
Visual Studio Code 與 Github 整合