Hi@akhtar,
You can merge your data between Git branches using git merge command. Say you want to merge your data from dev1 branch to master branch. For that you have to checkout to the master branch using bellow command and then you can apply git merge.
$ git checkout master
$ git merge dev1
Hope this will help.