Push does not go to remote and does not acknowledge error

0

I'm doing git push -f origin "branch name" and it does not go at all to the remote repository. Since no error appears, I have also changed some config of buffers, what do I do to solve?

Counting objects: 267, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (192/192), done.
Writing objects: 100% (267/267), 14.28 MiB | 0 bytes/s, done.
Total 267 (delta 62), reused 195 (delta 31)
    
asked by anonymous 16.05.2017 / 06:41

1 answer

0

First, you're trying to push -f , make sure you have permission to do so.

Second, your commits totals 14MB, make sure you have large files, and if your remote repository supports files with those sizes.

Make sure your remote repositories are configured correctly: git remote -v should display something like:

origin  [email protected]:gabrsar/dotfiles (fetch)
origin  [email protected]:gabrsar/dotfiles (push)

Make sure the addresses are correct.

If all of this is correct, try the following:

Try to do the same process without -f , and check for any errors.

The parameter -v will make a verbose push, showing all error messages. Check to see if any error or warning is displayed.

If possible, paste the result of git push origin nome_do_branch -fv . so we can help you better.

    
18.05.2017 / 04:15