mirror of
https://github.com/dandavison/delta.git
synced 2026-02-03 11:33:26 +01:00
16 lines
163 B
Bash
Executable File
16 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
repo=$(mktemp -d)
|
|
cd $repo
|
|
|
|
git init
|
|
git commit --allow-empty -m "Initial commit"
|
|
|
|
touch file
|
|
|
|
git add file
|
|
git commit -m "Initial commit"
|
|
|
|
git show
|