In theory, it doesn't matter. But, for port setup, specifically,
1. STA is best for dynamic changes (value in A may change periodically, but not using the immediate mode as in your example, in which case I prefer [2] below).
2. MOV is best for static initialization (always the same value is written to the port at the specific point of execution), and it is shorter than [1].
3. Best for single bit changes but only after original initialization. Using BSET/BCLR for first time setup is risky (as it blindly copies the remaining bits with whatever random values they happen to carry), a problem with write-once registers, for example. (Did you just edit [3] out?)