mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2025-12-20 05:30:03 +01:00
10 lines
160 B
Bash
Executable file
10 lines
160 B
Bash
Executable file
#!/usr/bin/env -S bash -e
|
|
#set up local repository
|
|
|
|
setup_git()
|
|
{
|
|
echo "Configuring git environment"
|
|
git config include.path ../.gitconfig
|
|
}
|
|
|
|
setup_git
|