diff --git a/gconfig.sh b/gconfig.sh new file mode 100644 index 00000000..34bf8827 --- /dev/null +++ b/gconfig.sh @@ -0,0 +1,13 @@ +#!/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 :)" \ No newline at end of file