Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当我执行svn logor时,svn blame我希望它始终使用--use-merge-history(or -g) 标志,以便我可以跨分支跟踪历史记录。
svn log
svn blame
--use-merge-history
-g
我不希望使用像lsvnor之类的 shell 别名svn_log。
lsvn
svn_log
您可以通过在 ~/.bashrc 中添加这些行来创建别名:
f_svn () { svn $1 -g } alias svn=f_svn
因此,无论何时调用svn something它都可以svn something -g。
svn something
svn something -g
然后,如果你想调用原始svn命令,你只需要调用\svn.
svn
\svn