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
0
votes
1 answer

advantages of different ways of python javascript (pull) communication

I am into implementing a pull communication between my javascript client and python server. I have wasted my last two weeks struggling with websockets and socketing, but now I decided to give it up. I am looking for the most convenient way to…
gen
  • 9,528
  • 14
  • 35
  • 64
0
votes
2 answers

uiscrollview pull horizontal to select object base on how far you drag

I have a uiscrollview and I put 4 uiviews to make an option. I put label 1 for uiview1 and label 2 for uiview2, for uiview 3 i put label 3 and uiview4 i put label 4. After that I hide the 4 uiview so everytime I pulldown the screen the 4 uiviews…
Aragon
  • 59
  • 2
  • 8
0
votes
1 answer

How to code with Spring data MongoDB for db.test.update({name:'abc'}, {$pull: {'child': {'age':10}}})

From console, I can operate as db.test.update({name:'abc'}, {$pull: {'child': {'age':10}}}). How to code with spring-data-mongodb in Java for this instruction? I got mongoTemplate. I know I need to invoke Update.pull(). But I don't know the…
user2663484
  • 11
  • 1
  • 4
0
votes
2 answers

Mercurial: How to synchronize multiple people with the intention to pull/merge/push from/with/to a central repository?

Given a central mercurial respository and mutliple teams with access to this repository, every team for once in a while has to synchronize its changes to the centralized one. Let's say team A and team B are in the state and have the intention to…
Aufwind
  • 25,310
  • 38
  • 109
  • 154
0
votes
2 answers

git pull without pulling the name of the repository?

When I use the command git clone git clone git@github.com:[my_org]/[my_repo].git It comes down as my_repo/ I'd just like to pull the contents of the repo without pulling down the repo name as a folder. Is this possible?
micah
  • 7,596
  • 10
  • 49
  • 90
0
votes
1 answer

MongoDB pull element from array two levels deep

I have a collection with the following items : { "Queries" : [ { "Results" : [ { "id" : 1 }, { "id" : 2 } ] } ], "_id" : ObjectId("51ddb6f9b18996be485cba6f") } { "Queries" : [ { "Results" : [ { "id" : 0 }, { "id" : 3 } ] } ], "_id" :…
GuiSim
  • 7,361
  • 6
  • 40
  • 50
0
votes
2 answers

Heroku db:pull error LoadError: cannot load such file — sqlite3 (Sequel::AdapterNotFound)

I'm having the same problem as this person: Heroku db:pull error "LoadError: cannot load such file -- sqlite3 (Sequel::AdapterNotFound)" Where I cannot pull my database from heroku. However gem install sqlite3, gem install taps, and installing…
ThinQtv
  • 103
  • 1
  • 1
  • 11
0
votes
1 answer

Is there any different between Android 2.3 and 4.0 for decode XML file by PULL?

I just found a bug for my APP, which is run normally in Android 4.0 , but will crash in Android 2.3 , I trace it and found the problem is decode XML files the XML files format is it is fine when I use PULL in…
Bruce_Van
  • 46
  • 5
0
votes
1 answer

Push from local copy to remote shows up as changes

I set up a repository (git init) on an existing unversioned sourcetree in production (don't tell me). After the initial import commit I cloned the repo on my dev machine and started editing. After the first commit/push everything seemed normal on my…
karl
  • 3
  • 2
0
votes
2 answers

Why is git pull bringing in changes that git fetch rebase is not?

I have a remote branch 1.4 I did a git fetch origin with the result: 13b1449..51618fe 1.4 -> origin/1.4 I then did a git rebase 13b1449 git responded Current branch 1.4 is up to date I then did a git pull origin 1.4 and it brought in 3 files. What…
taylonr
  • 10,732
  • 5
  • 37
  • 66
0
votes
1 answer

Git pull while in submodule will create another submodule

I have a major problem with git pull when dealing with submodules. I thought I started understanding their principle but apparently not... I created a simple git repo Super and created a submodule module in it. My first issue is when make a commit…
titocazou
  • 3
  • 1
  • 6
0
votes
1 answer

How to Git Pull across a local network?

I have a Git repository configured on my work machine at C:\Projects\project_1. I have shared the Projects folder on our work network and a colleague has cloned my project_1 into his own C:\Projects folder, which he has also shared. We've both been…
Ed King
  • 1,833
  • 1
  • 15
  • 32
0
votes
4 answers

MongoDB + PHP: Delete a value of a sub array

I have a document in the following form: [uuid] => d030b8d1 [commentstrings] => Array ( [0] => 1366220389#mac@test.org#test 1 [1] => 1366220422#mac@test.org#test 2 [2] => 1366220458#mac@test.org#test 3 ) I have a full string of one of…
psic4t
  • 88
  • 2
  • 6
0
votes
1 answer

TortoiseHG 'file not found' when pulling/pushing/cloning

I've installed TortoiseHG 64bit on my Windows 7 laptop and worked with it with the last few weeks with no problems. But today I tried to check for new incoming changes and the workbench returns me an error Incoming from…
Sven van Zoelen
  • 6,989
  • 5
  • 37
  • 48
0
votes
1 answer

Eclipse, Git pull to existing repository, where are new projects

Using Eclipse 4.21 + Egit 2.20 on Linux, all components are up to date. The Eclipse workspace is linked to a local repository stored outside of the workspace folder. The remote repository is on GitHub. After a pull (either made within Eclipse or…
Polymerase
  • 6,311
  • 11
  • 47
  • 65