Hi@akhtar,
The easiest way is to create one branch in the local git repository and later push it to the remote repository. You can use the below commands to do so.
$ git checkout -b <branch-name>
The remote branch is automatically created when you push it to the remote server.
$ git push <remote-name> <branch-name>