2012-04-25 14 views

Respuesta

14

Volver a instalar Git y seleccione:

Context menu entries: "Git Bash Here" (and the "Git GUI Here" option) 

Durante la instalación. No puedo decir por qué desapareció, pero esto debería devolverlo.

0

Encontré que lo que estaba buscando estaba en el panel izquierdo, no en la carpeta correcta. Y sigue usando el botón derecho.

1
  1. Desinstale por completo Git y elimine la carpeta Git en los archivos de programa.
  2. Instalar Git.
  3. En el menú contextual, seleccione "Git Bash" & "Git GUI aquí" opciones.
+0

Después de varios vuelve a instalar, se reinicia, 'regsvr32/u git_shell_ext64.dll' comandos de esta sugerencia fue la solución para mí (yo usé Git 1.8.3 y se olvidó de la 'git-guepardo 'complemento). Thx mate – rlegendi

9

cómo solucionar SIN volver a instalar:

Tengo este problema después de mover todos mis programas fuera de mi disco duro principal y pegándolos en mi "P" unidad. Pero mantuvo todas las estructuras de directorios iguales.

Git fue movido desde:
C: \ DEV \ PROG \ GIT
A:
P: \ DEV \ PROG \ GIT

1: abrir el Editor de Registro: Escriba "regedit" en la búsqueda del menú de inicio y presione enter.

2: Encontrar la configuración del menú contextual de acceso directo para "fiesta de git aquí" En regedit: Menú "Edición"> "Buscar"> "Buscar" y escriba "git_shell"

3: modificar el valor de Datos entonces esa ruta apunta a la ubicación correcta. En mi caso he cambiado:

"C:\DEV\PROG\GIT\git-bash.exe" "--cd=%v." 
TO: 
"P:\DEV\PROG\GIT\git-bash.exe" "--cd=%v." 
Screen shot included below. 

git_shell Data Path in RegEdit

+0

Esto es lo que necesitaba. ¡Gracias! – Alan

1

Ejecutar este proceso (AddGitToExplorerContextMenu.reg). Es posible que deba actualizar la ubicación de Git. Puedes añadir manualmente a través de regedit también

Windows Registry Editor Version 5.00 

[HKEY_CLASSES_ROOT\Directory\Background\shell\git_shell] 
@="Git Bash" 

[HKEY_CLASSES_ROOT\Directory\Background\shell\git_shell\command] 
@="\"C:\\Program Files\\Git\\git-bash.exe\" \"--cd=%v.\"" 
0

pasos si no puede utilizar el métodos de reinstalación.

Uso REGEDIT

1/ Open regedit (search it if needed) 
2/ Go to 'HKEY_CURRENT_USER/Software/Directory/Background' 
3/ Create new key 'shell' 
4/ Create new key 'Git bash here' (or whatever name you want to see in the menu) 
5/ Create new key 'command' (must be named command) 

At this point point you'll have 
'HKEY_CURRENT_USER/Software/Directory/Background/shell/Git bash here/command' 

6/ Edit the value of the command key as follow 'pathToGit/git-bash.exe' 

Update o Windows Explorer abierto nuevas y verá que cuando hacen clic derecho.

imagen para resumir esto: How to add git bash here in context menu

+0

No tengo carpeta Directorio –

Cuestiones relacionadas