Quantcast
Channel: 簡睿隨筆
Viewing all articles
Browse latest Browse all 897

撰寫git info工具以模擬svn info功能

$
0
0

由Subversion切換到Git的環境裡最不能適應的功能之一就是svn info了,Git並沒有對應的指令,搜尋了一下似乎只有Linux Bash的類似腳本… 既然沒有人寫Windows版本的git info,就自己寫一個吧。以下是剛出爐的git-info.exe的背景資料:

git info

  • 使用Lazarus IDE以Free Pascal撰寫
  • 目前只有Win32執行檔,如果有時間會再加Linux版
  • 原始碼在GitHub上,歡迎修改或分支
  • 如果只想下載執行檔試試,也可以由我的Dropbox連結下載

使用說明

  • 將git-info.exe複製到 <Git安裝資料夾>\libexec\git-core資料夾裡,就能以下列指令來執行:
git info
     git info -?
     git info && %TEMP%\git-prompt.bat
     git info && git-prompt
  
  • git info -? 會顯示簡要的操作說明
  • git info第一次執行時會在git-info.exe所在資料夾裡產生git-info.ini,所有顯示的git資訊都設定在此ini檔裡,可依需求增加cmd?設定,一個指令以 .title 與 .exec 組成
[Command]
cmd1.title====Remote URL:
cmd1.exec=git remote -v
cmd2.title====All branches:
cmd2.exec=git branch -a
cmd3.title====Recent commits:
cmd3.exec=git log --pretty=format:"%C(yellow)%h %C(cyan)%ai %C(bold green)[%cn]%C(bold red)%d %C(bold green)%s%C(reset)" -10 --abbrev-commit --abbrev=4
cmd4.title====Current Status:
cmd4.exec=git status
  
  • 每次執行git info時會產生git-prompt.bat,產生的提示符號樣式與路徑於git-info.ini裡設定;建議將之設定到PATH指到的資料夾裡。執行git-prompt.bat後會將目前分支名稱加到提示字元裡:
[Prompt]
DefaultFG=light green
DefaultBG=black
HighlightFG=light yellow
HighlightBG=black
PromptBatch=d:\util\git-prompt.bat
  
  • git-priompt.bat的內容範例,分支名稱的顯示顏色是由git-info.ini裡的[Prompt] HighlightFG等設定組成。
@echo off
if exist .git\HEAD goto GIT
goto NOT_GIT
:GIT
  @prompt $p ($E[1;33;40m分支名稱$E[1;32;40m)$g
  goto END
:NOT_GITn
  prompt $p$g
:END
  
===Text attributes===
0   All attributes off
1   Bold on
4   Underscore (on monochrome display adapter only)
5   Blink on
7   Reverse video on
8   Concealed on

===Foreground colors===
30  Black
31  Red
32  Green
33  Yellow
34  Blue
35  Magenta
36  Cyan
37  White

===Background colors===
40  Black
41  Red
42  Green
43  Yellow
44  Blue
45  Magenta
46  Cyan
47  White
  

相關資訊

##


您可能也會有興趣的類似文章

The post 撰寫git info工具以模擬svn info功能 appeared first on 簡睿隨筆.


Viewing all articles
Browse latest Browse all 897

Trending Articles