Hello!

I cannot push the project to remote git repository (github).

In advance sorry for my English.

I did the following:

- I chose "File" -> "New File or Project" -> "Other Project" -> "Empty Qt Project" -> click on the button "Chose..."
- I wrote the name of the project "HelloGitHub" -> click on the button "Next"
- I clicked on the button "Next"
- I chose in field "Add to version control" -> "git"
- I clicked on the button "Finish"
- I added to the project the file with the contents:

main.cpp
Qt Code:
  1. #include <iostream>
  2.  
  3. int main() {
  4. std::cout << "Hello GitHub" << std::endl;
  5. return 0;
  6. }
To copy to clipboard, switch view to plain text mode 

- commit: "Tools" -> "Git" -> "Local Repository" -> "Commit..."
- I wrote the commit Description
- I clicked on the button "Commit 2/4 File(s)"
- I went to the site github.com -> I created a repository with name "HelloGitHub"
- I chose "Tools" -> "Git" -> "Remote Repository" -> "Manage Remotes..."
- In the "Remotes" dialog I clicked on the button "Add..."
- I wrote in the field "Name": HelloGitHub
- I wrote in the field "URL": https://github.com/8Observer8/HelloGitHub.git
- I chose in the "Remotes" field the line: HelloGitHub https://github.com/8Observer8/HelloGitHub.git
- I clicked on the button "Push"
- I got a message:
70.png
- I got a output:
git config --global push.default simple

See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)

The command 'C:\Program Files (x86)\Git\cmd\git.exe' did not respond within the timeout limit (60000 ms).
The project is not saved in the repository.