I am now making changes directly on my ftp server so I created a remote repository on my ftp server and attempted to push to origin, the same repository I was pushing to on my local machine.
I got a non-fast forward error, and attempted to do a pull request, I got “warning no common commits” I ended up with this error on my site “unexpected T_SL”
GIT inserted <<

The
T_SLerror is PHP telling it found a<<<<<<conflict marker inserted by Git.will find all such files.
If you want to keep your local changes, you’ll need to resolve those conflicts (either manually or via
git mergetool), commit them and pull from that repo.If you want to get rid of local changes, do
git reset --hardor safer,git stash, which will save those changes in a stash (you can get it back withgit stash pop).