mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-10 04:07:18 +02:00
16 lines
239 B
Bash
16 lines
239 B
Bash
|
#!/bin/bash
|
||
|
set -ex; rm -rf repo; mkdir repo; cd repo
|
||
|
|
||
|
git init
|
||
|
|
||
|
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
|