I'm not exactly sure what your repo looks like but here's the worst-case scenario.
Suppose your origin repository looks like this
origin:
o---o---A---B---C master
And your local repository looks like this,
JimPuls:
o---o---A---B---C master, origin/master
\
D---E---F topic1
Then, after your branch renames your local repository looks like this:
JimPuls:
o---o---A---B---C old_master, origin/master
\
D---E---F master
Now, when you push master to origin that'll be a non-fast-forward update. After the push, the origin repository will look like this:
origin:
o---o---A...B...C (B & C are orphaned commits)
\
D---E---F master
This can be cruel to your friends who may have done commits on top of C. For example, if Sally was working with you her repository may look like this:
Sally:
o---o---A---B---C origin/master
\
G---H---I master
Now, if you do your non-fast-forward push and Sally does a fetch her repository will look like this:
Sally:
D---E---F origin/master
/
o---o---A---B---C
\
G---H---I master
Now Sally has to figure out how to get her work (G, H, I) back into the repository. If she simply does a merge with origin/master then the changes in B and C will be back in the repository (oops!). Instead, she'll have to cherry-pick or rebase her G-H-I changes onto origin/master.
It's cool that Git lets you do that but it's kind of asking for trouble. You're really hoping that Sally notices the situation. This is why you should warn all the other contributors when you do this so they can deal with the change appropriately.
NOTE: the above is a worst-case scenario. If your topic1 branch departed from master at C then that change is a fast-forward and there are no problems.