Home >Development Tools >VSCode >How to run git project with vscode

How to run git project with vscode

王林
王林Original
2020-01-10 10:34:107176browse

How to run git project with vscode

First open the folder as a workspace to store projects

How to run git project with vscode

Then press ctrl ` to open the terminal, under window By default, open powershell

How to run git project with vscode

and then enter the git clone url command to pull the code of the git warehouse. The ssh address needs to be equipped with a certificate. Here we use http connection

How to run git project with vscode

The project is successfully pulled, and you can see the project you pulled next to it

How to run git project with vscode

Now compile and run the project, and then continue to open it Terminal, switch to the project and directory, execute npm install, compile

How to run git project with vscode

After the compilation is completed, execute npm run to run, follow the dev representative here to run in the development environment, it will Read the configuration of dev

How to run git project with vscode

After successful operation, the homepage of the project will be automatically opened

How to run git project with vscode

Recommended related article tutorials: vscode tutorial

The above is the detailed content of How to run git project with vscode. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn