You don't want to redefine Gamma. Changing it might break anything built on top of it. Having warned about that, you can change Gamma with the Unprotect and Protect expressions. For example:
Unprotect[Gamma]
Gamma[x_] := x*2
Protect[Gamma]
Frank Kampas's suggestion is the correct one.