From the root directory of your working copy just do
git checkout A2 -- .
git commit -m 'going back to A2'
Using git revert for this purpose would be cumbersome, since you want to get rid of a whole series of commits and revert undoes them one at a time.
You do not want git reset since that will merely change your master branch pointer locally, to a commit that is not a child of the remote repository’s master branch pointer. That will cause any push attempt to fail; you’d have to delete the master branch in the remote repo first and recreate it by pushing. Then everyone who tries to fetch/pull from it is going to have errors in turn, which means they in turn will need to delete their own remote tracking branch (origin/master most likely) before fetching again (pulling won’t work; they need to fetch first to recreate the remote tracking branch). And you are left with no record of the mistaken direction. In short, don’t do that.