本篇內(nèi)容主要講解“如何配置git diff”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“如何配置git diff”吧!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、重慶小程序開發(fā)公司、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了三穗免費建站歡迎大家使用!
需要的工具
libreoffice
diff
colordiff(可選)
#!/bin/bash
# excel diff script
this_xlsx=$1
other_xlsx=$2
if [ -z $other_xlsx ]; then
echo "Error: file not allow empty"
echo "usage: $0 this_file other_file"
exit 1
fi
tmp_dir=.tmp_$$
mkdir $tmp_dir
soffice --convert-to this.slk $this_xlsx --outdir $tmpdir
soffice --convert-to other.slk $other_xlsx --outdir $tmpdir
# 如果沒有colordiff可以不需要
diff -u $tmpdir/`basename ${this_xlsx%.*}`.this.slk $tmpdir/`basename ${other_xlsx%.*}`.other.slk |colordiff
在.gitattributes
文件中加入如下內(nèi)容
*.xlsx diff=excel
*.xls diff=excel
在.git/config
文件中加入
[diff "excel"]
command = path_for_excel_diff_script
到此,相信大家對“如何配置git diff”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
當(dāng)前題目:如何配置gitdiff
標(biāo)題路徑:http://aaarwkj.com/article2/pegioc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、網(wǎng)站導(dǎo)航、外貿(mào)建站、網(wǎng)站改版、域名注冊、App設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)