1
vote
1answer
72 views

Git fetch and pull operation on branches

This might have been asked before but I can not find the answer. Assume following scenario. I have a local repository with following local branches. Scenario 1 local Branch A Branch B ...
0
votes
1answer
40 views

Diffing remote branches with msysgit

I'm trying to get my team to use git and since most of them want a GUI then I've gone down the msysgit path. I have a nice set of instructions written up for most daily tasks but I'm stumped on how ...
2
votes
3answers
50 views

reverse a git fetch

I have a thorough understanding of git, and the difference between pull, fetch, and merge. I have a remote that I track, fetch, and merge with occasionally, let say it's origin/master. What I'm ...
0
votes
1answer
46 views

Files of new SVN branch are fetched with wrong path when running git svn fetch

I have a git repository cloned from SVN with std layout a while ago. (It was done with git svn init and git svn fetch). Now I am using git 1.7.9. My svn-remote config section looks like this: ...
0
votes
2answers
58 views

git fetch followed by git pull made me ahead of origin/master

I did a git fetch origin master and then git pull origin master and after this two commands when I do a git status I get: $ git status # On branch master # Your branch is ahead of 'origin/master' by ...
1
vote
1answer
44 views

How to perform the inverse of a fetch in GIT?

The Setup I have a local network of 4 machines (Dev1, Dev2, Server and Laptop). Server has what you might call the main repository. The 2 Dev machines are where development happens. ...
2
votes
2answers
86 views

What are common use cases for git fetch?

I'm learning Git, and helping some co-workers get up to speed with it. So far, I haven't found a good reason to use git fetch. It just doesn't seem to have a lot of utility compared to using git pull ...
4
votes
1answer
310 views

Git returning null on hudson

I am working on a project using git with hudson to build some tests. I have done all the hudson configurations (at least think I did) and I downloaded git for windows. The repository is located on ...
5
votes
2answers
89 views

Git: What's the difference between fetching from named remote and fetching from a URL?

Suppose I clone a git repository from the path /path/to/repo. The original repository will be a remote called "origin". I can fetch objects from the origin with the command git fetch origin. This ...
1
vote
3answers
396 views

Git Workflow Pull vs Fetch

I know this question has been asked before but it seems to me that the answer has been changed with time so I'm quite confused. So once and for all in 2012 december 22 after domesday, (those of us ...
0
votes
1answer
54 views

how to fetch the old code from git repository

I think this is the simplest question but i am very first to the git . So can you please any body help me out. That is how to fetch the old code from the git repository and how to get the old code ...
2
votes
1answer
89 views

How to modify fetch parameter in git config file using command line?

I know I can use the following command line git remote add pullorigin git+ssh://root@git-xxx.xxxxx.com:1000/mnt/GITROOT/xxxxx.git to change the .git/config and get the following content for that ...
1
vote
2answers
86 views

Automatically fetch and pull on Debian server

I have a Debian server and a git repo (Assembla). What I would like to achieve is to have a function which automatically fetches any new revision and puts it in our 'test' host. Meaning that if I ...
0
votes
1answer
114 views

Why `git show-ref FETCH_HEAD` is empty?

I fetched remote repository, and the reference to it stored in FETCH_HEAD, it has some content cat .git/FETCH_HEAD # => d11f8ef4a4735a4193633ed2fed90e441d9ce0f8 branch 'hotfix' of xxx But ...
7
votes
2answers
892 views

git fetch vs. git fetch origin master have different effects on tracking branch

This is mostly of the nature of a curiosity as I'm trying to get familiar with Git. I have looked at the documentation for 'git fetch' but I don't see an obvious explanation for the below. Thanks in ...
2
votes
2answers
2k views

git merge and got this error “does not point to a commit”

I forked a repo from github.com, and also had set the upstream remote. Below is my repo [ Leezhm LIZHM ~/Developments/OF_GIT ] git remote -v origin git@github.com:leezhm/openFrameworks.git (fetch) ...
0
votes
0answers
74 views

Using ruby-git to see if local is ahead of remote

I'm attempting to find out if I can see if my local repository is ahead of my remote with ruby-git. I'm looking at https://github.com/schacon/ruby-git/blob/master/lib/git/status.rb and from the looks ...
4
votes
3answers
2k views

git fetch doesn't fetch all branches

I have cloned a repository, after which somebody else has created a new branch, which I'd like to start working on. I read the manual, and it seems dead straight easy. Strangely it's not working, ...
1
vote
2answers
444 views

FETCH_HEAD not updating after “git fetch”

I have a local repository that pulls from a remote one. Running git pull as well as git fetch; git merge FETCH_HEAD used to work perfectly and did the same thing as expected. Presently, and ...
0
votes
2answers
183 views

git fetch only for current branch

I know that I can fetch any remote branch to any local branch, but is there also some kind of shortcut to fetch just from the tracked remote branch to the current tracking local branch (without the ...
3
votes
3answers
577 views

Jenkins, fetch git submodule over ssh with multiple users?

don't know if the title describes anything about what I'm trying to say but here it is: I would like to know what would be the "best practice" when setting up Jenkins with git submodules. Both the ...
1
vote
1answer
99 views

Git's 'remote add' & 'fetch' process clarification

This example is after the octocat example on the github website under 'step 3: configure remotes': git remote add upstream git://github.com/octocat/Spoon-Knife.git git fetch upstream As far as I ...
1
vote
2answers
85 views

Where to find changes due to `git fetch`

I didn't want to lose some information after a git pull, so I did a git fetch before. Where can I read the new modifications after a git fetch? I went to the FETCH_HEAD file, but there was nothing ...
0
votes
2answers
281 views

Git fetch/pull only work when connected to a specific wifi?

I've cloned a Git repository a few days back and began working on it, all the while on a wifi connection we'll call wifi_a. Sometimes, wifi_a is unresponsive, but wifi_b generally works when wifi_a ...
0
votes
3answers
407 views

GIT remote cannot fetch via SSH

I've just initialized a GIT repo in an existing website root. I have a local development copy of this site, which is already a GIT repo. I can't just clone one from the other, as the local/live ...
3
votes
2answers
176 views

Git fetch/checkout without creating remote?

How to fetch/checkout remote repository without creating locally remote branch? Use Case: I have some repo on GitHub, someone forked it and added new feature and initiated pull request. I can't ...
0
votes
2answers
2k views

git fetch not update my local repository

What I want: Update all news commits from server with my local repository in all branch but do not merge any branch (just join the history lines). I am trying this command git fetch --force ...
0
votes
2answers
372 views

Why a merge instead of fast forward?

I had just committed some new changes. Next I did a git fetch then git merge origin/master The HEAD was fast forwarded. I continue to add 3 more commits. Then I repeat the process git fetch and git ...
0
votes
2answers
271 views

Git force pull replica

So I have 2 branches on github: master and branchA. Say I've been working on master and master is ahead by 3 commits or something. So there are commits d, e, and f on master that are not in branchA. ...
0
votes
1answer
63 views

Does git support fetch the folder from server?

I run the git fetch command to get the update from server. It's OK for small update from other colleagues. But when someone pushed a big amount of data, it always failed, and says:"fatal: The remote ...
4
votes
1answer
120 views

Git: What do the numbers reported by `git fetch` mean?

When running git fetch, that gives some numbers: $ git fetch upstream remote: Counting objects: 77, done. remote: Compressing objects: 100% (23/23), done. remote: Total 47 (delta 19), reused 39 ...
17
votes
2answers
2k views

Git push fails to github: failed to read object

The story: I've been developing a RoR-app in both my desktop and laptop. It was quite handy to commit changes made on another, push them to github and fetch & merge on other. The starting point ...
1
vote
1answer
89 views

git - how to mirror file from other repo

I've a problem which probably can't be solved, but I'll ask anyway. I do have one git repository, and I need one file to be mirrored from another one. There is one .xsd file in the repo I need to have ...
0
votes
1answer
215 views

GIT bare with a remote SVN reference. How I update?

I have a bare git repository with a remote reference to a SVN repository. Also I have a cloned repository from this. I want to have this bare repository always synchronised, I'm doing a git svn fetch, ...
1
vote
1answer
150 views

Referencing the sha1 in one local repo from within another local repo in git

I have two git repos that I cloned on my local machine. I'm attempting to apply a change from one repo to the other: cd path/to/local-repo1 git fetch path/to/local-repo2 <sha1> // cherry-pick ...
1
vote
1answer
725 views

Git fetch github: Index-pack failed

When running the command git fetch github , I get the following error: fatal: write error: Broken pipe93), 23.23 MiB | 635 KiB/s fatal: index-pack failed. I then get a "git.exe has stopped working" ...
0
votes
2answers
117 views

Specifying a branch in git fetch

What does the branch parameter mean when issuing git fetch <remote_repo> <branch> ?
1
vote
1answer
637 views

Soft reset git bare branches

I have a set of GIT repositories that I always have different activities on differrent branches and they are all pushed to github the activities are linked to Redmine and would trigger Redmine to ...
2
votes
1answer
937 views

git fetch/merge non-fast-forward changes?

Guess I've a feature branch (so not master) which I changed (e.g. amend a commit, rebased or so) so it has non-fast-forward commits waiting for fetch/merge. How can I do this? When I git fetch, git ...
1
vote
1answer
353 views

How to Fetch changes in git repository in XCode 4?

I have just downloaded a code from github and now would like to "Fetch" the changes on the gitbub into my local repo, how I can do that within xcode 4? Or I have to do it manually by going to command ...
0
votes
2answers
152 views

How can one prevent a specific tag or branch from being fetched in a remote bare repository? [duplicate]

Possible Duplicate: “Hiding” things in GIT Is it possible to lock specific tags or branches down so they can't be fetched?
4
votes
3answers
711 views

Strange behavior with git fetch

I'm getting a big problem with GIT fetch...look this $ git fetch From server:project 422b4cb..a04c062 master -> origin/master $ git show-ref ba113be885e66a5306d1646cd3db0801170c04f8 ...
5
votes
2answers
1k views

Git “Fetch URL” and “Push URL”, whats the difference?

When would the Fetch URL and Push URL not be the same for a certain remote? For example, when i run git remote show central for a remote named central, the output looks like: * remote central ...
0
votes
2answers
114 views

git fetch from a a second degree remote

I have a very slow network link to my remote repository (call it repoSlow) from which I fetch once in a while to my main development repo (call it repo1). Sometimes I clone repo1 to repo2 in another ...
5
votes
1answer
391 views

“git svn fetch” fails, ls-tree dying because of missing tree object

"git svn fetch" does not finish and spews out the following (error) messages: (dev) martinom :: /var/my/git ‹master*› » git svn fetch Found possible branch point: http://.../branches/dexter/lib => ...
2
votes
2answers
262 views

“git push” doing the same as “git fetch” from the remote

My question is the same as this one, but the answer is not clear to me. I have two git repos A and B in sync (corresponding to the two machines I work on). When I start working in B, I would normally ...
1
vote
1answer
191 views

Clone a git-svn repo by getting all of the svn part from the original svn repo

How can I clone a git repo from my laptop (at home) to a server (at university) while getting most of the repo from a third (svn) repo at another uni that is the main codebase. I'd like to minimise ...
1
vote
1answer
57 views

Git: Have one user not fetch/merge changes to specific, otherwise tracked, files

We have a file that we need to be tracked in our Git repository. Most users need to be using this file as normal: committing changes to it, pushing, pulling, etc… We have one user for whom this file ...
8
votes
4answers
6k views

Why does git fetch via hudson fail, while git fetch via the command line works?

I'm trying to fetch a read-only git repository from github and have it be built via hudson. This process is failing. This is the hudson output: Started by an SCM change Checkout:workspace / ...
4
votes
1answer
124 views

Git Remote Repository Check-Out Problem

I've just started using Git and have never used a versioning system before. I am trying to setup a git repository on my web server and one on my local computer. I am doing the following on the server ...

1 2