千家信息网

如何配置git diff

发表于:2025-02-08 作者:千家信息网编辑
千家信息网最后更新 2025年02月08日,本篇内容主要讲解"如何配置git diff",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"如何配置git diff"吧!git diff excel in
千家信息网最后更新 2025年02月08日如何配置git diff

本篇内容主要讲解"如何配置git diff",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"如何配置git diff"吧!

git diff excel in linux

需要的工具

  • libreoffice

  • diff

  • colordiff(可选)

diff脚本

#!/bin/bash# excel diff scriptthis_xlsx=$1other_xlsx=$2if [ -z $other_xlsx ]; then    echo "Error: file not allow empty"    echo "usage: $0 this_file other_file"    exit 1fitmp_dir=.tmp_$$mkdir $tmp_dirsoffice --convert-to this.slk $this_xlsx --outdir $tmpdirsoffice --convert-to other.slk $other_xlsx --outdir $tmpdir# 如果没有colordiff可以不需要diff -u $tmpdir/`basename ${this_xlsx%.*}`.this.slk $tmpdir/`basename ${other_xlsx%.*}`.other.slk |colordiff

git配置

.gitattributes文件中加入如下内容

*.xlsx diff=excel*.xls diff=excel

.git/config文件中加入

[diff "excel"]    command = path_for_excel_diff_script

到此,相信大家对"如何配置git diff"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

0