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

Can't pull a Gradle project in Eclipse

I'm part of a team working on a game project and we just moved our project to using Gradle. I can pull, commit, merge and push normally with Git GUI in Windows Explorer, but other members of the team can also pull in Eclipse by right-clicking the…
Steve Waters
  • 3,348
  • 9
  • 54
  • 94
0
votes
1 answer

What is the right way of keeping files with same names but different content intact locally and on remote server during push and pull in git?

I need to keep separate configuration.php files locally and on server. The problem is I've added the file to .gitignore and removed it from index using git rm --cached configuration.php but then when I push it server, it deletes configuration.php…
0
votes
1 answer

Way to drag listview items till middle when reached bottom

Maybe a really vague description but basically exactly what I want. When you reach the bottom of a listview the list stops with scrolling, you can't go further. What I want is that you can scroll further and that the bottom items scroll till the…
iLuvCode
  • 329
  • 1
  • 4
  • 15
0
votes
1 answer

In mongoDb how do you remove an object within an array that contains a specific key and value?

I'm trying to remove the field from the teacher array that contains a specific subject, such as "ok baby" { "_id" : "billy", "password" : "$2a$10$MKZFNtMhts6rMbnIoqXB9.Q8NHAizQAGhX5S6g.8zeRt7TpRpuQea", "teacher" : [ { "subject" : "ok…
Squirrl
  • 4,909
  • 9
  • 47
  • 85
0
votes
1 answer

How tu update repository after branch pull with Mercurial

When I create a new branch with Mercurial, I'm able to pull only that certain branch with : hg pull -b The console prints the number of the files that had been modified, so not a problem with this. But when I do : hg update The…
salamey
  • 3,633
  • 10
  • 38
  • 71
0
votes
3 answers

"git reset xxx" command on windows does not perform the same action as linux?

At the HEAD version, I have a mistake that pull another branch when I on master branch so that some new files or directories had been merged into master branch from another. I realize this is a very big mistake. So I use "git reset xxx" to restore…
Qinghua
  • 351
  • 3
  • 10
0
votes
1 answer

git pull using putty asks for password

I want to make a bat file which runs a git pull command. I have the following .bat file: ssh.cmd cd [path to my putty installation] Start putty.exe -ssh [path to server] -l [username] -pw [password] -m C:[path to text file]/update.txt and a txt…
Robert Baelde
  • 105
  • 1
  • 9
0
votes
1 answer

Android XML pull parser cannot get attributes

I am trying to load this xml file into an Android app. I got everything working but for some reason I can't get it to load the id. I have been googling and found that I should be using the parser.getattribute(null,"id"); but for some reason it…
0
votes
1 answer

Android App that pulls Information from URL (IMDB)

I want to add a tab to my Android App that pulls information from the web. The first tab should be a list of the most popular TV Shows on IMDB (http://www.imdb.com/search/title?at=0&count=100&sort=moviemeter&title_type=tv_series,mini_series) for…
Stef
  • 644
  • 1
  • 8
  • 25
0
votes
1 answer

Pulling xml value using Java

I'm trying to pull the version value (2.100.2) where href="someclient.jar" using JAVA. Any suggesstions? I've gotten up to parsing the xml file into a Document.
jdoyle0116
  • 83
  • 2
  • 12
0
votes
1 answer

How can I execute a git extension pull form many repository

How can I execute a git pull form many repositories? It's possible using GitExtension?
DaxDeveloper
  • 138
  • 1
  • 13
0
votes
1 answer

Git/BitBucket Pull/Commit Merge Error

Sometimes when me and my team mates are working on this project, and I try to pull with commits ready to merge with the pull I get this weird "Conflict" and I don't get any specific error, but this shows up at random spots in the code. (with the…
Cow
  • 764
  • 5
  • 10
  • 25
0
votes
1 answer

adb pull dynamically created file path

I know I can pull file from android like this adb pull /sdcard/file.txt But I try to do something else First I search for the last edited file like this tmp123=$(adb shell ls /sdcard/file.* -aR . | head -n 1) and then I try this adb pull…
0
votes
1 answer

How to remove object from numeric array with mongoose

I got this kind of document { "_id" : "5339be1d9a703ab8708b45675339bed39aac7", "description" : "data", "name" : "data", "members" : [ { "user" : { "$ref" : "users", "$id" :…
Morgoth
  • 15
  • 7
0
votes
1 answer

What is the practical use/aim of `git fetch` command

I understand the purpose of git fetch but I don't get why someone want to continuously update his local repo without merging. I mean when you are ready you can just do a git pull. Why do git fetch followed by git merge in increments ?
Cemre Mengü
  • 18,062
  • 27
  • 111
  • 169