mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
7 lines
182 B
Bash
Executable File
7 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
git status > status.txt 2>&1
|
|
echo "--- LOG ---" >> status.txt
|
|
git log -1 >> status.txt 2>&1
|
|
echo "--- REBASE DIR ---" >> status.txt
|
|
ls -d .git/rebase* >> status.txt 2>&1
|