How to copy text in gitk

前端 未结 5 1138
清酒与你
清酒与你 2021-02-07 06:03

Can I copy source code in the left-bottom panel in gitk? Any keyboard shortcut or other functions?

OS: Ubuntu 9.04 Desktop / gitk: 1:1.6.0.4-1ubuntu2

Thank you.<

5条回答
  •  深忆病人
    2021-02-07 06:33

    Run Gitk in backgroup mode and don't close it while you paste. The clipboard will work better while gitk is still running.

    $ gitk &

    You can also make it as function in ~/.bashrc or ~/.bash_aliases

    function gitk() { 
        /usr/bin/gitk $@ & 
    }
    

提交回复
热议问题