function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Adu86Adu86 

To Fetch(Pull) from Remote repository into Local -Bit Bucket

Hi,

I am using big bucket repository as a version controlling  for my sales force project.

I configured the push and pull(Fetch) of the code from the local repository to Remote repository using GIT in eclipse. The push works fine (I can see the latest code committed into remote, but while I pull the latest code from remote to local branch,it says there is  "No ref to fetch from origin-Everything up to date".

How can I pull the latest version from remote to Local? Here is my config file.

    [core]
     repositoryformatversion = 0
     filemode = false
     logallrefupdates = true
    [remote "origin"]
     url = https://snune@bitbucket.org/snune/git-star.git
     push = refs/heads/master:refs/heads/master
     fetch = +refs/heads/*:refs/remotes/origin/*
    [branch "master"]
     remote = origin
     merge = refs/heads/master


Thanks