mirror of
https://github.com/Snigdha-OS/snigdhaos-kernel-switcher.git
synced 2025-09-05 22:56:37 +02:00
16 lines
330 B
Bash
16 lines
330 B
Bash
#!/bin/bash
|
|
|
|
# Setup Git Credentials
|
|
|
|
# Git Credential
|
|
username="Abhiraj Roy"
|
|
useremail="157954129+iconized@users.noreply.github.com"
|
|
|
|
# Git Config
|
|
git config --global user.name "$username"
|
|
git config --global user.email "$useremail"
|
|
|
|
echo -e "\033[0;32mSuccessfully Setup Git Credentials :)"
|
|
|
|
# Merge
|
|
git config pull.rebase false |