Hi@akhtar,
If you want to merge your data between branches, you can use git merge. But git merge will also copy the logs from another merge. But if you want only data you can use squash. Use the below given command
$ git merge --squash branch_name
Hope this will help.