mirror of
https://git.alemi.dev/gitshell.git
synced 2024-11-12 18:59:19 +01:00
21 lines
613 B
Bash
Executable file
21 lines
613 B
Bash
Executable file
#!/bin/bash
|
|
if [ $# -eq 0 ]; then
|
|
echo "[!] no repository name specified"
|
|
exit
|
|
fi
|
|
|
|
REPOSITORY="$1"
|
|
|
|
if [[ ! "$REPOSITORY" == *.git ]]; then
|
|
REPOSITORY="$REPOSITORY.git"
|
|
fi
|
|
|
|
if [ ! -d "/srv/git/$REPOSITORY" ]; then
|
|
echo "[!] repository doesn't exists"
|
|
exit
|
|
fi
|
|
|
|
cd "/srv/git/$REPOSITORY"
|
|
echo "$ git log --graph --abbrev-commit --decorate $REPOSITORY"
|
|
TERM=xterm git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
|
|
echo ""
|