Date Tags git

I originally cloned the SQLAlchemy repo directly from the original source. Once I started making changes that I wanted to contribute with pull requests, I forked the repository and had to change origin on my local git clone:

git remote -v
git remote rm origin
git remote add origin https://github.com/celttechie/sqlalchemy.git
git remote add upstream https://github.com/zzzeek/sqlalchemy.git