Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

431
votes
7answers
103k views

What's the difference between git pull and git fetch?

What's the difference between git pull and git fetch?
53
votes
5answers
9k views

When should I use git pull --rebase?

I know of some people who use git pull --rebase by default and others who insist never to use it. I believe I understand the difference between merging and rebasing, but I'm trying to put this in the ...
38
votes
7answers
11k views

How to implement Android Pull-to-Refresh

In Android applications such as Twitter (official app), when you encounter a ListView, you can pull it down (and it will bounce back when released) to refresh the content. I wonder what is the best ...
22
votes
3answers
3k views

Using GIT, how can I selectively pull / merge changes from another's 'fork'?

Take this scenario: I decide to 'fork' a codebase on github.com, and start doing my routine: Edit - Commit - Push; aka hack hack hack. After I made some changes, I see some changes another person ...
21
votes
2answers
4k views

What is the advantage of the rebase command in Mercurial?

Compare to standard push/pull, what is the advantages of using the rebase command in Mercurial?
21
votes
6answers
10k views

[Git]How can I make my local repository available for git-pull?

I have a working copy repository that I've been working in no problem; the origin for this repository is on GitHub. I'd like to make my working copy repository available as the origin for my build ...
21
votes
4answers
12k views

How can I generate a git diff of what's changed since the last time I pulled?

I'd like to script, preferably in rake, the following actions into a single command: Get the version of my local git repository. Git pull the latest code. Git diff from the version I extracted in ...
18
votes
3answers
2k views

How do you attach a new pull request to an existing issue on github?

I'm not sure, but I have a vague memory of creating a github pull request with "Issue 4" or something in the title, and it automatically attached itself to Issue 4 in the project that I was submitting ...
13
votes
4answers
13k views

Git pull certain branch from github

I have a project with multiple branches. I've been pushing them to github, and now that someone else is working on them i need to do a pull from github. It works fine in master. But say I have branch ...
12
votes
1answer
2k views

How can I pull an existing heroku app to new location for development?

I currently have the latest version of my code on another computer that I want to develop from (Home computer and laptop for when I'm out and about) I set up heroku for my app on my laptop. Now I need ...
8
votes
4answers
365 views

When will `git pull --rebase` get me in to trouble?

I understand that when I use git pull --rebase, git will re-write history and move my local commits to occur after all of the commits in the branch I just pulled from. What I don't understand is ...
8
votes
1answer
6k views

How to tell Git to always pull the master branch?

I find git docs very cryptic regarding this issue. I want to do a simple thing, but it seems doing it is not simple at all. I have the following situation: $ git remote -v origin ...
7
votes
3answers
121 views

git branch continually getting recreated on pull

I have a git branch that continually gets 'recreated' with an alternating letter case every time I perform a 'git pull'. Assuming the branch name is 'a' (or 'A' for all I know), one 'git pull' will ...
7
votes
6answers
2k views

How to pull specific directory with git

I have a project with git, and I just want to clone or pull a specific directory, like myproject/javascript just like subversion does. make some changes, commit and push back again. It's possible? ...
7
votes
3answers
4k views

Does “git fetch --tags” include “git fetch”?

A nice and simple question - is the function of "git fetch" a strict sub-set of "git fetch --tags"? I.e. if I run "git fetch --tags", is there ever a reason to immediately run "git fetch" straight ...
6
votes
3answers
576 views

Git pull into wrong branch

Myself and one other developer had been merging and pushing our work to a non-master branch called toolwork. That way, we didn't impact the rest of the team. My topic branch was called DPM-93 and my ...
4
votes
1answer
132 views

Why does git pull --rebase fail when replaying existing commits?

I don't get this: when I 'git pull --rebase remote branch' it reverts my HEAD back to their shared root and then starts replaying all of the remote commits that have happened in the meantime. Why do ...
4
votes
5answers
2k views

How do I hook a git pull on the remote?

Is there a way to hook when a git pull happens on the remote (similar to a pre-receive or post-receive). Basically I'd like to be able to cause the remote to commit whatever it has when there is a ...
4
votes
1answer
551 views

How do I create a pull-down/up window in Android GUI?

For Android GUI: I would like to create a window that I can pull up from the bottom of another window, kind of like the Notification bar or the tab in the bottom on Spotify for Android. I want to be ...
4
votes
2answers
689 views

Automatically pulling on remote server with Git push?

Here's what I'm trying to do: I have a GitHub repository, a portion of which I'd like to make web viewable. Right now I've cloned the repository on my own server and it works well, but in order to ...
4
votes
2answers
1k views

Opposite of `git push --mirror`? How do I get my repo back?

I am having great success with git push --mirror to make backup copies to a bare repo. But after search on SO and elsewhere, I cannot find a way to clone the thing locally with all branches. I do not ...
4
votes
2answers
462 views

Does hg pull only operate on the current working directory?

I have multiple mercurial repositories and used hg clone to create backups of them on our file server. Now I want to write a batch file that updates them once a day by running hg pull -u on each ...
4
votes
1answer
5k views

Why do I sometimes see an “Entry 'filename' not uptodate. Cannot merge.” after a 'git reset --hard' and a 'git pull'?

Occasionally, when I do the following... git reset --hard HEAD is now at 0123abde comment is here git pull Updating 0123abde..456789fa I get the error... error: Entry 'filename' not uptodate. ...
4
votes
1answer
1k views

SQL Server 2005 Replication and different indexes on the subscriber

We have SQL Server database setup. We are setting up a replication scenarios where we have one publisher and on subscriber. The subscriber will be used as a reporting platform so that we can run all ...
3
votes
1answer
28 views

What happens when I do git pull origin master in the develop branch?

Let's say I have a private topic branch called develop with 2 commits ahead of master. What does git pull origin master do? Pull everything from the remote master in the local develop and merge it? ...
3
votes
2answers
35 views

What hg command displays only heads that are incoming?

I have a two repositories, I'll call them RepoA and RepoB. RepoA has many changesets that the other is lacking. There are many heads in RepoA and only a few in RepoB. I'd like a command that tells me ...
3
votes
1answer
163 views

How to pull data in the Map/Reduce functions?

According to the Hadoop : The Definitive Guide. The new API supports both a “push” and a “pull” style of iteration. In both APIs, key-value record pairs are pushed to the mapper, but in addition, ...
3
votes
2answers
335 views

Git pull - deleted files

I have a development server and a couple of production ones. I do commits from the dev to a remote repository and have git push production setup, that issues a pull from the production servers. I ...
3
votes
1answer
146 views

Git: Forcing pull from specific branch (and preventing override)

I know there are questions floating around regarding git pull from a specific branch when you provide no explicit branch name, however I am wondering if it's possible to force a pull branch even if ...
3
votes
1answer
328 views

Android: Retrieving XML results from a .NET soap Web Service

Okay, my issue today is that I am trying to return an XML result from my .NET web service. The XML is generated directly from an SQL stored procedure, and the XML looks like: <?xml version="1.0" ...
3
votes
2answers
723 views

Git - Automatically fast forward all tracking branches on pull

I've set up tracking branches with the --track option, and when I do a git pull on master, it fetches all branches to origin/branchname but doesn't merge with the local tracking braches. This is extra ...
3
votes
1answer
1k views

Git Merge - Incomplete, Missing files and Folders

I was trying to merge a dev branch into master. git checkout master git pull . dev Everything seemed to go well, although there were conflicts I fixed these and commited. But when I checked ...
3
votes
1answer
733 views

Git already up to date unless I reset

I have a cloned repo I use for the live site and I have it pull from a bare repo. For some reason every time I execute "git pull" I get the already up to date message. But it's not up to date and not ...
3
votes
3answers
206 views

is there a simple way to know which files will be updated in the next 'git pull'?

i would like to know which files would be updated (and hopefully the changes that would occur) if i'd do a 'git pull'... is git stash git fetch git diff origin/master git stash apply the answer ...
3
votes
3answers
836 views

Git: How to move back and forth between commits

I have a newbie question about Git: I need to move back and forth in a history of a branch. That means, I need to get all the files to the state they were in in some old revision, and then I need to ...
3
votes
2answers
2k views

Unable to Git Pull to update my Git local repo

I removed a file in my local Git repo. I want the file back by updating my Git repo. I run the following unsuccessfully git pull It says upToDate, but I did not get the newest file. The public ...
2
votes
1answer
46 views

BitBucket Git Error: did not send all necessary objects

I am using bitbucket and git to revision a project I am currently working on. Today I tried to pull down the latest working copy of the project but was met with an error that I cant seem to find any ...
2
votes
1answer
42 views

MongoDB associative array - pull possible?

Having the following Array: array( 'id' => 12, 'keys' => array('x1' => array('idx' => 12, 'text'=> '1123145'), 'x2' => array('idx' => 14, ...
2
votes
1answer
51 views

How to pull data from server

i need help for implementing a pulling system. In my app I have a list to display updated data that will be pulled from a server. The list will refresh every 1 minute to update its data. This refresh ...
2
votes
1answer
80 views

git pull via PHP exec IIS

Easily the most difficult problem to diagnose that I have EVER experienced. I seem to be unable to call: exec('call git pull', $output); The process hangs and tends to take IIS with it. ...
2
votes
1answer
38 views

Ignore a file in git but have it downloaded when the project is cloned

I have a file that suffers modification every time I run my project. Thus, I don't want git to track it and so I add it to my .gitignore file. However, I do wish for the file to be pulled when ...
2
votes
2answers
328 views

How to Just undo a git pull?

Another developer has been merging unnecessary commits to the master and was pushing them to origin master for quite sometime. I made a small update today and pushed to origin master; and unaware of ...
2
votes
2answers
242 views

How can I pull all remote changes with rebase instead of merge?

I can pull changes using git pull, but it merges my local commits. Is there a git rebase equivalent with which I can pull in remote changes?
2
votes
3answers
1k views

Problem pulling file from emulator using GUI -OR- adb command

I'm developing my first Android application in Eclipse, Win7x64 and am having trouble pulling a SQLite file to inspect what's getting in it. I'm seeing this problem using DDMS GUI to pull, which ...
2
votes
1answer
100 views

My local git tracking branch isn't working properly. I need advice on how to set it up

So I'm working with another developer and want to pull and push to a remote branch (that is not the remote master by the way) but I want to set up so that when I check out my local branch on my ...
2
votes
2answers
2k views

PHP / Mongo: how do you update nested data?

I've been playing around with Mongo for about a week now and I still can't work out how to modify nested arrays in Mongo with php. So here is a sample document... array ( '_id' => new ...
2
votes
1answer
153 views

Where does git store information about the origin of a repository

I have a repository that I cloned from someplace a few months back and I'd really like to know where it came from. A 'git pull' returns successfully and tells me everything is up to date, but I'd ...
2
votes
3answers
576 views

How can I push/pull an individual changeset between repositories in Mercurial?

I have the following situation: I have site A, which has it's Mercurial repo, and we've been developing it for a while. Let's say A has had 5 revisions. We now has to create Site B, which is almost ...
2
votes
2answers
631 views

What is the difference between pull and clone in git?

What is the difference between doing: mkdir repo cd repo git init git remote add origin git://github.com/cmcculloh/repo.git git fetch --all git pull origin master and git clone ...
2
votes
1answer
40 views

With git how can i merge a repository that has already been merged?

I have a repository that i pulled the changes for, so now it is up to date with the remote repository. Except that now i realized that i needed to pull all of that repositories changes and keep none ...

1 2 3