Atom 插件git plus如何配置

Atom简介

Atom is a text editor that’s modern, approachable, yet hackable to the core—a tool you can customize to do anything but also use productively without ever touching a config file.

最近几天在尝试使用Atom,Atom是Github专门为程序员推出的一个跨平台文本编辑器。具有简洁和直观的图形用户界面,并有很多有趣的特点:支持CSS,HTML,JavaScript等网页编程语言。它支持宏,自动完成分屏功能,集成了文件管理器。开发团队将Atom成为“21世纪创造的可配置的编辑器”,它拥有非常细腻的界面,并且配置项丰富,而且可扩展各种实用的插件

git-plus配置

官方说明

vim-fugitive like package for atom. make commits and other git things without the terminal. Make sure your gitconfig file is configured. You must configure at least the user.email and user.name variables.Also, the package currently favors an ssh setup that doesn’t expect to be prompted for credentials in order to push/pull, .etc.

git plus官方文档如是说,大概意思就是说你在Atom上使用git plus插件可以脱离其他git终端即可完成各种git指令实现版本控制,但前提是你得先配置好你的用户名和邮箱,并且配置好ssh,看来git plus只能支持通过ssh key这种方式来使用git命令

配置

尝试几次后都在push这步失败,寻找原因后终于知道配置错误,那么如何配置呢,

如果安装了github客户端

  • 首先找到git.exe

  • 打开Atom的settings,打开packages,点击git plus左下方的settings,找到git path

一开始push失败就是因为没有正确配置git path,把上一步找到的git.exe的路径填进去,我的git.exe路径:

C:\Users\lenovo\AppData\Local\GGitHub
\PortableGit_\cmd\git.exe
【注意你输入时的\应该为/】

  • 使用git shell通过ssh的方式来clone项目,然后在用Atom打开刚刚clone下来的项目

  • 使用Atom的插件git plus即可成功使用git各项命令

可以看到可以成功push,可以正常使用了,可以快乐的使用git plus进行版本控制了!

如果没有github客户端

如果你没有github客服端,请参考这位大哥写的教程:Atom package git-plus 使用说明

参考文献

后记

在这里诚挚的感谢git plus的项目创建者,这位异国的大哥为我们提供了方便,感谢上述的博友做出的探索与总结,希望这篇博文对你有所帮助,如有问题可评论指出,如有错误之处还望大神批评指正!

坚持原创技术分享,您的支持将鼓励我继续创作!

热评文章