I've installed github properly and am able to login from Android Studio, but I get this error message. What could be the problem?
-
1Make sure your **git** path is set in studio setting. See http://stackoverflow.com/a/24625373/2949612 – pRaNaY Oct 08 '16 at 11:54
5 Answers
Probably, you use line separator in your description. This will cause such an error. If you write all your description at same line, you will go through the commit process.

- 1,009
- 11
- 17
I had the same problem and i am sure the error log in your case is the same to what it was in my case (see the pic). the problem is we should not use the new line or [ENTER KEY] in the description of your repository,just write everything in the same line.

- 476
- 1
- 7
- 16
You should check Git integration configuration in Android Studio
press Test button for testing.
I am also using Android Studio, I just push a new Android project to GitHub successful.

- 46,709
- 59
- 215
- 313
I received this error when I was trying to create a repo with a name that already existed in my account.

- 3,483
- 4
- 36
- 46
This probably because you used some symbols in your description, I removed the commas, the new lines and the dots then it saved it.

- 11
- 2