如何使用Webstorm来实现Git

时间:2016-07-19 08:05:46

标签: git

我之前可以使用Webstorm来Git,但它现在无法工作,我根本无法推动。我在很多方面设置了Git。现在我疯了。我不知道哪个设置是对的。我设置:

    git config --global http.proxy

当我克隆存储库时:

fatal: unable to access 'https://github.com/xxxx/xxxx.git': 
Failed to connect to 127.0.0.1 port 8087: Connection refused

fatal: unable to access 'https://github.com/xxxx/xxxx.git' :
Failed to connect to github.com port 1080: Time out 

如何将Webstorm用于Git?

1 个答案:

答案 0 :(得分:0)

为了启动新的git存储库,您只需使用git bash导航到项目文件夹并运行git init;它会为你设置它。从那时起,您可以按照自己喜欢的方式管理git存储库。

如果您坚持使用 WebStorm 工具,则可以按照网站上列出的步骤进行操作

  1. 打开要存储在存储库中的项目。
  2. 在主菜单上,选择VCS |导入版本控制|创建Git存储库。
  3. 在打开的对话框中,指定要在其中创建新Git存储库的目录。
  4. 将所需文件置于Git版本控制之下。这些文件显示在“默认节点”下的“版本控制”工具窗口中。
  5. <强>参考

    Version Control with WebStorm
    Setting up a Local Git Repository