Questions tagged [pull]

In distributed version control, pull or fetch is the action of transferring remote changes into a local repository.

In distributed version control, pull or fetch is the action of transferring remote changes into a local repository.

Examples:

970 questions
8
votes
1 answer

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 really like to know where its checking. I've looked…
sgargan
  • 12,208
  • 9
  • 32
  • 38
8
votes
1 answer

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 the BI queries that we need and have to hit the…
Kinlan
  • 16,315
  • 5
  • 56
  • 88
8
votes
3 answers

adb pull file in a specific folder of Pc

I want to save the screenshot created, in a specific folder on my PC. cmd = 'adb shell screencap -p /sdcard/screen.png' subprocess.Popen(cmd.split()) time.sleep(5) cmd ='adb pull /sdcard/screen.png screen.png' subprocess.Popen(cmd.split()) This…
Donato Pastore
  • 83
  • 1
  • 1
  • 5
8
votes
3 answers

Howto debug: Git pull hangs during git pull (always at 54%)

I added two large files to my repository (150MB each) and now git pull always hangs at 54%. I checked the network using ping, tried using a different one, I did a git fsck etc. Nothing helps. How can I debug this? Is there a way to just fetch one…
louis cypher
  • 667
  • 1
  • 6
  • 13
8
votes
3 answers

Are there best practices, other than stash, for using git-pull when our workflow includes a lot of uncommitted code?

My team and I are new to Git; we have used CVS so far. We have a remote repository and each one of us has his own repository. Each one of us is working on a feature or bug, but some of us may work on different parts of the same feature. When one is…
Ben
  • 398
  • 2
  • 8
7
votes
2 answers

Git How to: pull diff between branches

I would like to download the files that are the difference between two branches into a local folder. Is it possible with Git? Given the files are only added to the source branch, they are not changed.
Wojtek Turowicz
  • 4,086
  • 3
  • 27
  • 38
7
votes
2 answers

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 repo at github does not use SVN, so the problem cannot…
Léo Léopold Hertz 준영
  • 134,464
  • 179
  • 445
  • 697
7
votes
1 answer

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, the new API allows a mapper to pull records from…
Praveen Sripati
  • 32,799
  • 16
  • 80
  • 117
7
votes
2 answers

How Kubernetes Pulls Image from outer respository? Where is the image stored?

I want to understand better how Kubernetes works,and there are some doubts I haven't founded answer in documentation. I have a simple Kubernetes Cluster, a Master, and 2 Workers. I have created a docker image of my app which is stores in…
Claira
  • 73
  • 1
  • 3
7
votes
1 answer

Git pull from specific branch

I want to pull changes from specified branch to my local repository, but I don't wont it to merge with master branch. What is the right way to do that? Do I have to make my own branch and than pull?
user3568043
  • 133
  • 1
  • 2
  • 11
7
votes
2 answers

golang git pulling a repo

I'm very new to golang Im trying to do a git pull from go program. I have looked in to native libraries and found https://github.com/src-d/go-git/. I has features to of cloning ect. but not pulling. Looking at the source it seems there is a function…
Sajith Silva
  • 823
  • 1
  • 13
  • 24
7
votes
3 answers

Docker: how to fix "Layer already being pulled by another client. Waiting"

I have a fresh install using boot2docker. (DockerToolbox was giving me the same error. After uninstalling DockerToolbox, I deleted ~/.docker and searched my whole filesystem for anything starting with "docker" and found no other configuration…
Dan Jameson
  • 1,510
  • 13
  • 20
7
votes
1 answer

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 able to grab a small piece of the window and pull…
Sara
  • 3,733
  • 6
  • 26
  • 30
7
votes
2 answers

Ignore specific files when pulling from forked upstream origin

In git, how do you exempt certain files when pulling from an upstream origin (i.e. the original project)? I have a project that I'm working on that was originally forked from a repository that is very active. I've added the original as a remote…
Charlie Weems
  • 1,682
  • 1
  • 16
  • 28
7
votes
2 answers

MongoDB Java pull

i tried to remove an embedded document without succcess. I'm looking for the java way of following instruction: db.games.update({'_id': 73}, {$pull: {'goals': {'goal': 4}}})
hehe
  • 227
  • 5
  • 15