本文介绍利用Git工具下载和运行GitHub代码。
官网下载:https://git-scm.com/download/win
安装步骤:按默认选项安装即可。
安装完成后需要设置:
$ git config --global user.name “Your Name”
$ git config --global user.email “[email protected]”
具体安装过程参见:Git教程https://www.liaoxuefeng.com/wiki/896043488029600
GitHub作为免费的远程仓库,通过GitHub可以让别人参与你的开源项目,也可以参与别人的开源项目。
第一种方法:
直接在官网下载.zip文件至本地。
第二种方法:
复制仓库地址,运行终端,输入命令行:git clone 仓库地址。
第三种方法:
(1)利用Git工具下载:新建文件夹,在文件夹上右键选择“Git Bash Here”,此时会弹出git的命令窗口,输入 git clone+仓库地址。
(2)下载npm:https://nodejs.org/en/
(3)安装依赖包:npm install;
(4)npm run dev命令运行项目。
可以将项目导入Visual Studio,打开终端使用命令行运行项目。
参考资料:
从github下载项目并运行 :https://blog.csdn.net/Quest_sec/article/details/104030337