Fatal Tidak ada tujuan dorong yang dikonfigurasi

This time the first push requires the URL.
 
$ git add --all
$ git commit -m "commit message"
$ git remote add origin 'remote repository url'
$ git push -u origin Corresponds to the remote branch name
 
 
 
Then the next time you don't have to go through all that trouble, just.
 
$ git add --all
$ git commit -m "info"
$ git push
Shamimzz