1

I am attempting to push updates to git using bitbucket and it hangs at this point

Total 349 (delta 84), reused 1 (delta 0)

EDITTED here is the command I run

git add .
git commit --m "infor..."
git push

This is the complete thing of what I get>>>>

Counting objects: 398, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (382/382), done.
Writing objects: 100% (398/398), 176.64 MiB | 48.07 MiB/s, done.
Total 398 (delta 121), reused 1 (delta 0)

Please what could be wrong

Float
  • 263
  • 2
  • 14

1 Answers1

0

Check first if this is not a case of very long upload, as in this instance.

For that, as I described in this answer, try (with Git 2.10 or more recent) the --progress option:

 git push --progress
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250