mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-15 00:15:32 +02:00
allow adding whole diff to patch
this was causing a panic add integration test for toggling all commit files
This commit is contained in:
23
test/integration/patchBuildingToggleAll/setup.sh
Normal file
23
test/integration/patchBuildingToggleAll/setup.sh
Normal file
@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
cd $1
|
||||
|
||||
git init
|
||||
|
||||
git config user.email "CI@example.com"
|
||||
git config user.name "CI"
|
||||
|
||||
git commit --allow-empty -m "first commit"
|
||||
|
||||
mkdir -p one/two/three
|
||||
echo test1 > one/two/three/file1
|
||||
echo test2 > one/two/three/file2
|
||||
echo test3 > one/two/three/file3
|
||||
echo test4 > one/two/three/file4
|
||||
echo test5 > one/two/file1
|
||||
echo test6 > one/two/file2
|
||||
|
||||
git add .
|
||||
git commit -m "blah"
|
Reference in New Issue
Block a user