git比较两个分支指定文件夹文件的的差异

```
#!/bin/bash

# 指定要遍历的文件夹
directory="/g/xampp/htdocs/webAPI/src/app/Api/Records"

# 使用 find 命令遍历文件夹
find "$directory" -type f -print | while read file; do
echo "File: $file"
git diff develop $file
done
```

    A+
发布日期:2024年10月30日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: