其他分享
首页 > 其他分享> > 在WebStorm中使用Git

在WebStorm中使用Git

作者:互联网

一、初次提交项目

1、在公司搭建的gitblit服务上创建project,然后生成项目 git的地址。

2、在本地电脑上,打开 webstorm,要将已有的代码上传到 gitblit服务上,那么需要在webstrom编辑器的terminal命令窗口,输入命令:

git init 初始化项目(在内部会生成.git文件夹)
git remote add xxx https://xxx.xxx.git 设置git远程仓库, 最后两个参数,一个是 分支名称;一个是你在git网站创建的project的url地址

如果此文件夹中有排除项,则增加一个.gitignore文件对不需要上传文件忽略,如:

.DS_Store
node_modules
dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
test/unit/coverage
test/e2e/reports
selenium-debug.log

# Editor directories and files
.idea
.vscode
package-lock.json

3. 这时 webstorm中就可以看到git commit 或者 push相关的选项了 

点击 Commit,这是项目已经上传到本地仓库。

随后将其push到git端

好了,版本已存在git端。 

 

二、clone项目

1、把刚刚上传的项目clone下来

标签:git,log,项目,xxx,WebStorm,Git,gitblit,使用,debug
来源: https://blog.csdn.net/qq_38789941/article/details/102742267