0

enter image description here

Over the server i can change files, commit them, and push to origin. But from local repo using source tree i cannot. Local repo's commit works fine. But what to do to be able pushing? It should work because i cloned the repo and it was fine.

Pushing to ftp://annejulie%40blue-world.pl:password@blue-world.pl/annejulie.blue-world.pl.git
error: Cannot access URL ftp://annejulie%40blue-world.pl:password@blue-world.pl/annejulie.blue-world.pl.git/, return code 3
fatal: git-http-push failed
error: failed to push some refs to 'ftp://annejulie%40blue-world.pl:password@blue-world.pl/annejulie.blue-world.pl.git'

git remote -v will output:

 origin ../annejulie.blue-world.pl.git (fetch)
 origin ../annejulie.blue-world.pl.git (push)`
BJ Myers
  • 6,617
  • 6
  • 34
  • 50
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
  • 1
    Please, add the error message as a text so the exception will be searchable in Stack Overflow/Google/Bing/etc. – Zanon Dec 26 '14 at 11:30

1 Answers1

0

Unfortunately, according to Git fails to push to ftp-server there is no possibilities to push via ftp account.

According to git-scm.com - GIT URLS:

Git supports ssh, git, http, and https protocols (in addition, ftp, and ftps can be used for fetching and rsync can be used for fetching and pushing, but these are inefficient and deprecated; do not use them).

Community
  • 1
  • 1
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358