windows - Git -- QuickEdit on Command Line? -


there 2 useful features git trying combine on windows:

1) quickedit mode, allows paste command prompt (this windows variable set on shortcut use launch). set shown here:

photo of setting quickedit

2) launching git context menu, allows jump straight directory, without having manually browse bash (i.e. if right-click on folder, select git bash, git bash open browsed folder). looks this:

git bash context menu prompt

but, because quickedit mode windows variable (i think), , in case isn't turned on default, when launch git bash context menu, lose ability paste git bash... makes, among other things, cloning or setting remotes more annoying has be.

any ideas on how can set quickedit mode turned on when launching git right-click context menu in windows?

gui

command prompt window menu defaults options quickedit mode

reg file

windows registry editor version 5.00 [hkey_current_user\console] "quickedit"=dword:1 

command prompt

reg add hkcu\console /v quickedit /t reg_dword /d 1 

powershell

sp -t d hkcu:\console quickedit 1 

cygwin

regtool set /user/console/quickedit 1 

Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -