i am using a win 8-X64 machine, with a 1.8 GHZ processor core i5, i have both the atom editor and git bash installed on this machine, is there any process by which i can start atom text editor from the Git bash shell or vice versa.
答案 0 :(得分:3)
在您的环境变量中添加atom.exe文件位置。
请按照以下步骤操作:
步骤1.右键单击您通常打开原子编辑器的Your atom图标,然后单击属性
步骤2.复制目录中的开始
看起来像这样
start in: C:\Users\hemant\AppData\Local\atom\app-1.7.0
步骤5.转到“控制”面板,然后按照此目录Control Panel\System and Security\System
步骤6.在左侧您将看到高级系统设置点击它
步骤7.然后转到环境变量标签
步骤8.内部系统变量搜索路径点击它,然后点击修改
步骤9.在所有目录的末尾添加;
并粘贴原子目录,然后单击
确定强>
步骤10.然后通过键入$ start atom
OR
只需在控制台中输入PATH=%PATH%; C:/your atom directory
,然后按Enter键
答案 1 :(得分:0)
如果要将atom与所有git操作关联,请运行:
git config --global core.editor "atom --wait"
如果您只想编辑文件,请在git中添加别名:
git config --global alias.edit "! atom"
现在您可以通过调用git edit [filename]