You need to sign in to do that
Don't have an account?

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
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