Following is the commands I run to merge repo projectA to a new-created empty repo projectB.
projectA is a repo migrated from SVN using "git svn clone', and it contains Git Large File Storage objects.
run command "git merge --allow-unrelated-histories projectA/master" is stuck and I waited about a hour and there was no status update or error message, I gave up and forcefully closed the command prompt.
Is there any way to know what happened and prevent the merge process stuck, thanks.
cd C:\GitHub\projectA 
Python c:\Work\git-filter-repo --to-subdirectory-filter projectA 
cd C:\GitHub\projectB 
git remote add projectA  C:\Work\GitHub\projectA 
git fetch projectA  --tags
git merge --allow-unrelated-histories projectA/master //stuck,did not output anything on command prompt 
git remote remove projectA
 
    