There is a project in eclipse, which should be strictly located in the sdk folder. In bitbucket I create a new git repository. From there, I copy the link ( https: //sss@bitbucket.org/sss/qwerty.git ).

Now in eglip I click on "Clone a Git repository". Further:

enter image description here

enter image description here

After that, I share any project, and the project moves from sdk to the local repository and stops working? What am I doing wrong?

    1 answer 1

    enter image description here

    It seems like you explicitly indicate that the project should be cloned into G:\temp\qwerty . There he turns. Specify the correct path to your project sdk folder.

    In general, a more convenient way is:

    1. Do not clone an empty repository with Bitbucket, but create it locally, and then push on Bitbucket. He even gives instructions in an empty project:

      Already have a Git repository on your computer? Let's push it up to Bitbucket.

       cd /path/to/my/repo git remote add origin https://YourName@bitbucket.org/YourName/repo-name.git git push -u origin --all # pushes up the repo and its refs for the first time git push -u origin --tags # pushes up any tags 
    2. Work through the command line (git-bash, cygwin).