Fetches changes from a remote repository and incorporates them into the current branch of a Git repository.

learn more… | top users | synonyms

0
votes
1answer
16 views

How to avoid typing passphrase for git pull executed under www-data

I stuck on the operation when I need to execute Git pull command running from PHP script. (user is added into www-data group) without passphrase typing. I found that this can be solved using command: ...
1
vote
0answers
16 views

Git submodule with same name

I am trying to make repo like: server \ module_1 \ library \ module_2 \ library Whereis modules its stand-alone programs, using the same library. They should work/compile without server ...
0
votes
1answer
31 views

git gc and git pull locks up machine and never finishes

When running git gc, git gets up to 99% complete and then locks up. I let it run all night and it never finished, and did not seem to progress. Generally I have to hard-reset the machine to recover ...
0
votes
1answer
27 views

Redefinition error when pulling GitHub

I've been using GitHub for a while for source control on a singular developer project but now I am trying to set it up across multiple machines. Everything seems to be pushed correctly but when I ...
0
votes
1answer
42 views

Git stash and git pull in vagrant

Having problem in using git pull and git stash it give me following error. fatal: cannot unlink '.vagrant/machines/default/virtualbox/id': Permission denied Inside vagrant and if I use git pull then ...
1
vote
2answers
55 views

Git pull till certain commit (tag)

I have a clone of a remote repository. I updated its remote url to my own server. Then I did some commits and pushed them to my repository. Now I need to pull some changes from the initial repository. ...
2
votes
3answers
95 views

git deleted everything, how to recover files and folders

It was the first time that I was using git, I wanted to import an existing project into github and everything was deleted. After search for an answer I think git deleted the files after git pull, I'm ...
0
votes
1answer
144 views

The operation could not be performed because “PROJECTNAME” has one or more tree conflicts

I am using Git and when I tried to pull a newer development branch with my current branch using XCode's source control menu I received this error message: The operation could not be performed because ...
-1
votes
1answer
20 views

How to pull a directory that is in .gitignore?

In the .gitignore is a directory that I would need to pull on my localhost. I don't see this directory in the project structure o Github, but when I try to search it, I see this directory in the ...
1
vote
0answers
23 views

Update forked Github repo with all branches

I forked a repository on my Github account that has over 1000 commits and 20 branches. I then cloned it on my local machine. Is there any way I can update both my local machine's repo and my ...
2
votes
1answer
77 views

git rebase upstream/master vs git pull --rebase upstream master

Is there a difference between git rebase upstream/master and git pull --rebase upstream master, and if so, what? The remote could be any remote, not necessarily upstream.
1
vote
2answers
24 views

When pulling from a team repo from github, git forces me to make a merge commit, no conflicts

I've been working with another person on a repo we host at github. Everytime I or he pulls, git forces us to make a merge commit (vim opens up with a commit description), although we were working on ...
1
vote
2answers
57 views

git: Why “Merge branch 'master' of … ”? when pull and push

I'm still git newbie. I modified some source files and committed. Then, I did git push. But, I got this error. To /foo/bar/ ! [rejected] master -> master (non-fast-forward) error: failed ...
1
vote
3answers
28 views

How to know the diff of what recently changed on files pulled using a pull operation

I perform a git pull operation and it fetched via few files. How can I run a diff and understand what really changed in all of those files or a selective set of files within that list.
0
votes
4answers
129 views

Why does Git say my master branch is “already up to date” even though it is definitely definitely not?

New to Git/New to Github/Treat me like a two year old Here we go: ..................................Basic Problem.................................. I just deleted ALL the code from a file in my ...
4
votes
2answers
47 views

git: How can I merge my working file with the latest one

I'm new to git, and still having a lot of trouble. Say that I'm working on a.cpp. I modified some code in a.cpp. And, that change is not ready to commit or push. Then, other people also made a ...
1
vote
2answers
176 views

How come “git pull origin master” doesn't actually change the files in my computer's directory?

I'm still quite new to Github, though I'm in a position where I have to actively use it. Anyways, I used "git pull upstream master" to pull and merge the latest code for the project I'm working on. ...
4
votes
2answers
130 views

Fix Git “object not found” for good

From one pull to the next, every git pull on the server ends up in this: $ git pull remote: Counting objects: 53, done. remote: Compressing objects: 100% (32/32), done. remote: Total 32 (delta 19), ...
0
votes
1answer
209 views

git pull already up to date but head is not detached

Reading the title I know you would be pretty shocked as in why I am sure about head not being detached. I am not very used to GIT. There has been a change in the original repo I have made my clone ...
6
votes
1answer
263 views

Why is `git pull` considered harmful?

Someone I know at work gets all worked up whenever he catches someone using git pull, claiming that it's harmful. The git pull command seems to be the canonical way to update your local repository; ...
2
votes
1answer
99 views

Git: Every pull on origin master causes a merge with message

Every time I do a git pull origin master Git pops up an editor and asks me to write a comment about the merge before committing. Any idea why this might happen? Another developer is also doing ...
1
vote
1answer
47 views

How to have clean git history

Just before pushing the local changes to the remote repository, git always asks us to sync local branch with remote branch . For that to happen, I am doing git pull first, then commit the pulled ...
0
votes
1answer
102 views

git pull with “--work-tree” flag fails

I'm running (in a script - trying to avoid using cd): git --git-dir=/test/.git --work-tree=/test/ pull And getting: fatal: /usr/lib/git-core/git-pull cannot be used without a working tree. Note ...
0
votes
1answer
106 views

Git push or pull doesn't work on remote server

I'm following Dan Eden's Github workflow guide. I've come across a problem when trying to push my changes to Github from my remote, using git push -u origin master. I've added all the files to the ...
0
votes
1answer
51 views

git - when doing git pull, I got message Fast-forward .gitignore and did nto get some part of the code base

Yesterday, the developer I work with did some branch cloning to accomplish what he needed to accomplish, but when I did a git pull, the system pulled some items, and then I got a Fast-forward ...
0
votes
1answer
34 views

Git extensions no longer automatically merges on pull

This is essentially the opposite issue as Manual Merge Only on GIT extensions. Git extensions used to automatically merge for me when necessary on each pull. For some reason now it doesn't, and I ...
2
votes
2answers
255 views

Pull a specific commit from a remote repository

Well probably I searched much but didn't find what I need. Is there any way to pull only 1 specific commit from a remote git repo without cloning it on my PC. The structure of remote repo is ...
1
vote
1answer
72 views

prevent git from overriding tracked ignored files during a pull

So there is a file that is already tracked by git call it file.php...This is in a collaborative environment I made changes to that file that I don't want to have it committed but I want the changes ...
0
votes
1answer
65 views

Git pulling and pushing when working in a team

I've started working on a project with another developer and have only just realised how limited my GIT knowledge is. Here's the deal: I've been making changes during this week, and want to push ...
2
votes
1answer
193 views

How do I add/upgrade/downgrade a remote Git project in my repository without using submodules?

I need to keep a copy of WordPress in my project's Git repository. I want to use Git to pull down WordPress updates from GitHub, and then push out those updates via git push and/or git svn dcommit. ...
1
vote
1answer
155 views

git clone vs git pull

For my project I keep an online repository on github and local repositories on two computers (say A, B) where I write code and run tests and also on two-three other machines (say, C, D, E) where I ...
1
vote
1answer
28 views

why do you need to put branch name in git pull remote <branch> if the updated branch is where you are?

when I do a git "pull origin master" from a branch the branch is updated NOT the master. In order to update the master I need to do a "git checkout master" and then call "git pull origin master". Why ...
0
votes
1answer
84 views

Git checkout failing after pulling and changing .gitignore file

Suppose I have in my local repo two branches 'master' and 'new', in master I decided to put a folder 'folder/' in .gitignore and the I pulled from the repo into master, adding a new folder 'temp/' Now ...
1
vote
1answer
254 views

Git no space left on device

I did git pull --rebase and I got following error: error: file write error (No space left on device) fatal: unable to write sha1 file fatal: unpack-objects failed I have lot of space on my ...
1
vote
1answer
52 views

Git for live site deployment : How to get files from the live version?

From my Workstation, I can “push” modification to a git bare repository on my server, which contains a Hook that runs "git checkout -f", so I can deploy my site via Git. The thing is that users of my ...
1
vote
1answer
113 views

When does git pull cause merge between multiple branches?

I'm trying to understand the circumstances that caused git to merge a feature branch I was working on into the main develop branch after switching to the develop branch. I was able to revert the ...
0
votes
1answer
213 views

Resolve merge conflicts: Force overwrite all files

I am working on a git repository by myself (so yes, I know the implications and the warnings of doing this) and somehow one of the trees got a commit after being pushed when it shouldn't have. Now ...
0
votes
1answer
62 views

non-fast-forward error in git

I want to use git in my existing project, so I created a space on github for it and in the project folder on my host I did the usual: $ git config --global user.name myname $ git config --global ...
5
votes
1answer
92 views

What does git pull . do?

When I run it on my git repo this is what I get. git pull . From . * branch HEAD -> FETCH_HEAD Current branch rel_20121207 is up to date. But when I run just git pull it ...
0
votes
2answers
243 views

Git submodule pull overwrite/discard any local changes

I have a submodule which I changed some local files. The original repository has been modified and I now wish to do a pull on the submodule, but I get an error saying that I will lose my changes. ...
1
vote
1answer
33 views

How can I include commits from various forks of a GitHub repo?

A repo has various pull-requests and other fixes in some of its forks (no pull-request) that are noted in comments in the 'Issues' section. How do I go about gathering all the scattered fixes and ...
1
vote
2answers
1k views

git pull - can't submit merge message [duplicate]

Possible Duplicate: github locks up mac terminal when using pull command I am using git via the terminal on the mac. I have encountered an annoying problem recently when I try to perform ...
8
votes
1answer
222 views

Why does my git history look like a christmas tree?

When doing git log --decorate --oneline --graph in one of our repositories shortly before Christmas, we found that the following structure had appeared (rotated to emphasize the tenuous festive ...
0
votes
3answers
83 views

How to avoid merging a specific file with git-pull?

In my local repository, I have a modified settings file with a different version of the file stored on GitHub. Whenever I pull from GitHub into my local repository, my local copy gets changed. Is ...
1
vote
2answers
49 views

git pull: update repo without changing the contents of a specific directory

I want to update my local system repo with the remote one, but I do not want to touch the contents of one specific directory myDir. Note that this directory was updated later in the master branch but ...
2
votes
0answers
90 views

git pull doesn't “download” changed files from origin [closed]

I am new to git. I have one repository [CR] on Github. This repository, CR, is accessed by two different git directories on my local machine - g01 and g02. Both have CR as origin. In g02 I modified ...
1
vote
2answers
74 views

git merge pull branches confusion

I have 2 branches (master and dev). Another worker has pushed a new branch called stage into the repository so that stage is now 1 commit ahead of master. I am trying to pull down stage so that I can ...
1
vote
1answer
33 views

git search local history

I made a couple commits without making a git push. After that I made a git push and know I can't find these commits that were only local. Can I somehow find those commits that I didn't push to remote ...
3
votes
1answer
132 views

git pull works only for master branch

Pulling any branch from any repository from a computer inside the git server's LAN works. However, on any remote computer (not on the same LAN as the git server), pulling master from any repository ...
0
votes
0answers
88 views

what does multiple merge bases mean?

I want to pull files from a remote server in NetBeans/Git. I got this error: multiple merge bases what does it mean?

1 2 3 4