Adapter_Board_i8/gitconfig.sh

15 lines
293 B
Bash

#!/usr/bin/env bash
# Set colors
GREEN='\033[1;32m'
CYAN='\033[1;36m'
NC='\033[0m'
printf "${GREEN}----${NC}"
git config --local commit.template .gitmessage
git config --local commit.cleanup strip
printf "${GREEN}Git config was successfully set.${NC}"
echo
printf "${GREEN}----${NC}"
$SHELL