mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-24 08:52:21 +02:00
19 lines
319 B
Bash
Executable File
19 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
set -ex; rm -rf repo; mkdir repo; cd repo
|
|
|
|
git init
|
|
git config user.email "test@example.com"
|
|
git config user.name "Lazygit Tester"
|
|
|
|
|
|
touch foo
|
|
git add foo
|
|
git commit -m "init"
|
|
git branch -a
|
|
git branch test
|
|
git branch TEST
|
|
git checkout TEST
|
|
git checkout TeST
|
|
git checkout TesT
|
|
git checkout TEsT
|
|
git branch -a |