Contents
  1. 1. tigrc
  2. 2. 在尚未有commit的repository啟動tig

tig 是個ncurses-based text-mode的git界面,簡化git的操作流程不用打一長串的指令:)

tigrc

tig binding wiki

  • status view時刪掉某檔案

    1
    bind status D !?@rm %(file)
    • !:使用external command rm
    • ?:asks for confirmation, like “Are you sure you want to delete file? [YyNn]”
    • @:prevents tig to display the command output, making things more integrated.

在尚未有commit的repository啟動tig

在剛執行完git init的資料夾中執行tig會顯示以下錯誤

1
tig: No revisions match the given arguments.

解決辦法是執行tig status,顯示status view,可以直接按u加入檔案。
tig status

Contents
  1. 1. tigrc
  2. 2. 在尚未有commit的repository啟動tig