Add Git terminal is VSCode

  • First, open the VSCode
  • With the Ctrl + `open key combination provided
  • In the search bar search settings terminal.integrated.shellArgs.windows.
  • Click on在 setting.json 中编辑
  • Add the following configuration file open and save
"terminal.integrated.shellArgs.windows":[
        "D:\\git\\Git\\git-cmd.exe",//添加Git应用程序的系统路径,这一行是我的Git应用程序所在路径。
        "D:\\octave\\Octave-5.2.0\\mingw64\\bin\\octave-gui.exe"//这里是我的octave命令行应用程序所在位置,理论上在这里可以添加r任意多个命令行应用程序。
    ]
  • Restart terminal (terminal) will appear Git command line, and then you can have fun with VSCode Fun Git a sleek interface.
Published 18 original articles · won praise 0 · Views 399

Guess you like

Origin blog.csdn.net/weixin_45646006/article/details/105148456