You can change the start of the second clone to directly click on the remote repo:
cd /path/to/second/clone
git remote set-url origin /url/of/remote/repo
Or you can add a new remote (still in the second clone) to reference the original remote repo
cd /path/to/second/clone
git remote add upstream /url/of/remote/repo
.
git push upstream aBranch .