vs code配置git
阿新 • • 發佈:2018-12-17
在專案目錄執行
git init
修改.git資料夾下的config檔案
[core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true [user] name = 名稱 email= 郵箱 [remote "origin"] url = https://gitlab.com/專案地址.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master
新增user模組和name email
修改vscode配置
{ // 使用 IntelliSense 瞭解相關屬性。 // 懸停以檢視現有屬性的描述。 // 欲瞭解更多資訊,請訪問: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Launch", "type": "go", "request": "launch", "mode": "auto", "program": "${fileDirname}", "env": { "GOPATH" : "D:/go_work", "GOROOT":"C:/Go" }, "args": [], "git.path":"C:/Apps/Git/bin/git.exe", "terminal.integrated.shell.windows":"C:\\Apps\\Git\\bin\\bash.exe" } ] }
更改完成後,此處會提示相關資訊。