zoukankan      html  css  js  c++  java
  • cmd打开git

    一旦你的git安装成功,而且在安装是没有选择可以使用cmd黑窗口来打开,那么你再来设置会很麻烦,我表示不会。

    今天分享下同事分享给我的一个不错的方法。

    这个方法依赖一个 Dos 文件(.bat文件),我们可以创建一个自己想要的名字的文件,如:git_route.bat

    然后可以用编辑器打开,输入一些自己想要的命令,如下是我git_route.bat文件的内容:

    标红的地方每个人的都不一样,自己按照自己的实际情况进行修改。

    @echo off
    
    @rem ==============================================================================
    :menu
    
    
    cls
    
    cd d:
     echo.
     echo              ================ Git 本地仓库路径选择 ==================
     echo.
     echo                       1:    自己的项目
     echo                       2:    H5  
     echo                       3:    compass-project 
     echo                       4:    yeoman-project  
     echo.
     echo                       P:    打开Git图形操作界面
     echo                       Q:    退出
     echo.
     echo              ================ Git 本地仓库路径选择 ==================
     echo.

    set /p input= 输入相对应的代码选择Git路径:
     if "%input%"=="1" goto route_1
    if "%input%"=="2" goto route_2
    if "%input%"=="3" goto route_3
    if "%input%"=="4" goto route_4
    if "%input%"=="P" "d:Program FilesGitinwish.exe" "d:Program FilesGitlibexecgit-coregit-gui"
    if "%input%"=="p" "d:Program FilesGitinwish.exe" "d:Program FilesGitlibexecgit-coregit-gui"
    if "%input%"=="Q" exit
    if "%input%"=="q" exit
    goto menu
    @rem ==============================================================================
    :route_1
    cd d:sitesself-project
    "d:Program FilesGitinsh.exe" --login -i
    goto menu
    @rem ==============================================================================
    :route_2
    cd d:sitesH5
    "d:Program Files (x86)Gitinsh.exe" --login -i
    goto menu
    @rem ==============================================================================
    :route_3
    cd d:sitescompass-project
    "d:Program FilesGitinsh.exe" --login -i
    goto menu
    @rem ==============================================================================
    :route_4
    cd d:sitesyeoman-project
    "d:Program FilesGitinsh.exe" --login -i
    goto menu

      (需要注意,当路径中有空格的时候,需要用双引号将路径引起来,否则命令会无效

    然后我们可以双击这个文件,就会在cmd的黑窗口打开命令行了,截图如下:

    接着我们输入 1,回车就会进入到自己项目的这个git仓库所在文件夹了,效果如下:

    输入项和其他的都是我们在 git_route.bat 文件里面配置的。

    其他命令:

      输入p,进入git ui 操作界面。

      输入exit,会回到menu界面。

    当然,目前这我个人还不满足,我把东西放在那里,我就需要去哪里双击打开这个文件,个人表示不喜欢,虽然可以创建桌面快捷方式,或锁定到下方的任务栏中。

    当时我还是想要简便一点,那就是用命令打开。

    步骤如下:

    1、在桌面或者某个目录下创建一个文件件,将刚才的 git_route.bat 文件放进去。

    2、将文件夹的路径放到环境变量里面去,这样的话,我们打开cmd黑窗口后,直接输入 git_route命令,就可以进入git的菜单界面。

  • 相关阅读:
    Leetcode Excel Sheet Column Number
    AlgorithmsI PA2: Randomized Queues and Deques Subset
    AlgorithmsI PA2: Randomized Queues and Deques RandomizedQueue
    AlgorithmsI PA2: Randomized Queues and Deques Deque
    AlgorithmsI Programming Assignment 1: PercolationStats.java
    hdu多校第四场 1003 (hdu6616) Divide the Stones 机智题
    hdu多校第四场 1007 (hdu6620) Just an Old Puzzle 逆序对
    hdu多校第四场1001 (hdu6614) AND Minimum Spanning Tree 签到
    hdu多校第三场 1007 (hdu6609) Find the answer 线段树
    hdu多校第三场 1006 (hdu6608) Fansblog Miller-Rabin素性检测
  • 原文地址:https://www.cnblogs.com/ayseeing/p/4453377.html
Copyright © 2011-2022 走看看