The setup script

This commit is contained in:
9pfs 2024-05-25 09:14:00 +00:00
parent 6e09ff289b
commit 49fa4a5d7b
Signed by: 9pfs
SSH key fingerprint: SHA256:TOcGxMQCfy4VvRM8AzgXErKXdkAtaTcpGXgYMpyoJoY

5
doit.sh Normal file
View file

@ -0,0 +1,5 @@
set -x
git init
for a in {0..100}; do git branch br$a; git switch br$a; touch br$a; git add br$a; git commit -m br$a; done
git switch main
git merge `for a in {0..100}; do echo br$a; done`