Skip to content

Commit

Permalink
refactor(config): create my own git credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanized committed May 2, 2024
1 parent 74af07e commit daf53ae
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions config.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/bash

# Author : Eshan Roy <eshan@snigdhaos.org>
# Author URL: https://eshanized.github.io/

# Setting up Author's Git Credentials
echo
echo "################################################################################"
echo -e "If you have write Access, create another file excluding the name 'config.sh'"
echo "################################################################################"
echo

# Git Credentials:
git config --global pull.rebase false # Merge
git config --global user.name "Eshan Roy (Eshanized)"
git config --global user.email "m.eshanized@gmail.com"

echo
echo "################################################################################"
echo -e "If you have write Access, create another file excluding the name 'config.sh'"
echo "################################################################################"
echo

0 comments on commit daf53ae

Please sign in to comment.