About the use of git push / pull? Bitbucket

I have pushed a project document to bitbucket on this side
I have a test and a formal server
suppose I want to push the test with me Synchronize git pull
what should I do to implement it?

I am commit and push
then I presume to git pull. I need to test the project file of the server
with the client first. Then what kind of git code do I have to type before I can start git pull?

Mar.10,2021

if you understand your problem correctly, just go to the corresponding directory on your test server and execute

git pull

is fine, there is nothing extra to do, be careful not to modify the code on the test server, otherwise additional merge and other actions may be required.

Menu