The equivalent to git pull
is the command
git svn rebase
This retrieves all the changes from the SVN repository and applies them on top of your local commits in your current branch.
You can also use the command
git svn fetch
to retrieve the changes from the SVN repository and bring them to your local machine but without applying them to your local branch.