回答編集履歴
1
コマンド修正
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
commit1~commit2間で変更があったファイル名を取得
|
4
4
|
```bash
|
5
|
-
git diff --name-only {commit1} {commit2} >> .
|
5
|
+
git diff --name-only {commit1} {commit2} >> ./diff.txt
|
6
6
|
```
|
7
7
|
|
8
8
|
変更があったファイルだけ取得
|