Hey guys thank you for all those who commented what to do and what's going on, so ultimately while playing around with it for a while this was what I was able to do!
So I go into my terminal and ran brew install git
After that I got this reply in the terminal as follows
Linking /usr/local/Cellar/git/2.34.1...
Error: Could not symlink bin/git
Target /usr/local/bin/git
already exists. You may want to remove it:
rm '/usr/local/bin/git'
To force the link and overwrite all conflicting files:
brew link --overwrite git
To list all files that would be deleted:
brew link --overwrite --dry-run git
So I went and ran the command
brew link --overwrite git
The reply i got was :
Linking /usr/local/Cellar/git/2.34.1... 213 symlinks created.
Ran the following command afterwards
brew link --overwrite --dry-run git
Got the following reply back :
Warning: Already linked: /usr/local/Cellar/git/2.34.1
To relink, run:
brew unlink git && brew link git
So I finally ran a check to see what the git version was
git --version
And I got the updated git version I was trying to get my path aligned to!
git version 2.34.1
Hope this helps anyone else who needs help with this! I did not remove '/usr/local/bin/git' but hopefully I didn't need to or won't have to worry about it later on.