I am using hub by github to create pull requests from command line. I even assign the pull request to a user using the command line. However, I don't understand how do I reassign a pull request that was already created via the command line to a different user.
The command I use to create a pull request is:
hub pull-request -b <org_name>:main -h <branch_name> -m "title of pull request" --assign <user_name>
If I use the same command to assign a different user then it returns an error saying that a pull request already exists. So any thoughts on how to do this?