mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-24 08:52:21 +02:00
24 lines
246 B
Bash
Executable File
24 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
set -ex; rm -rf repo; mkdir repo; cd repo
|
|
|
|
git init
|
|
|
|
cat <<EOT >> windowslf.txt
|
|
asdf
|
|
asdf
|
|
EOT
|
|
|
|
cat <<EOT >> linuxlf.txt
|
|
asdf
|
|
asdf
|
|
EOT
|
|
|
|
cat <<EOT >> bomtest.txt
|
|
A,B,C,D,E
|
|
F,G,H,I,J
|
|
K,L,M,N,O
|
|
P,Q,R,S,T
|
|
U,V,W,X,Y
|
|
Z,1,2,3,4
|
|
EOT
|