Tagged Questions
81
votes
13answers
73k views
Force git to overwrite local files on pull
How do I force an overwrite of local files on a git pull?
The scenario is following:
a team member is modifying the templates for a website we are working on
he is adding some images to the images ...
23
votes
3answers
4k views
'git pull origin mybranch' leaves local mybranch N commits ahead of origin. Why?
I just observed something odd about git pull, which I don't understand.
On Friday, I worked on a local branch. let's call it mybranch. Before leaving the office I pushed it to origin (which is my ...
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 ...
17
votes
2answers
8k views
Git merge flattening
If I am working in multiple branches on a single feature, I use git pull branch1 branch2 branch3 to pull all the changes into my master branch. However, all the commit logs of each branch are copied ...
12
votes
3answers
6k views
Can I tell git pull to overwrite instead of merge?
As far as I see, git pull someRemote master tries to merge the remote branch into mine.
Is there a way to say "Completely discard my stuff, just make me another clone of the remote" using git pull? I ...
11
votes
3answers
6k views
Push and Pull Branches In Git
I have a local repository I'm working on and it's remote is hosted on GitHub. I recently created a branch and started working on it making several commits and now wish to push the branch to GitHub ...
10
votes
3answers
5k views
How can I fast-forward a single git commit, programmatically?
I periodically get message from git that look like this:
Your branch is behind the tracked remote branch 'local-master/master'
by 3 commits, and can be fast-forwarded.
I would like to be able to ...
9
votes
3answers
1k views
Unable to push to git Repository. It hangs after “Writing Objects: 100%”
I am running git daemon with the following command.
c:\cygwin\bin\git daemon --reuseaddr --base-path=/cygdrive/S --export-all --verbose --enable=receive-pack
I am able to clone and pull updates but ...
9
votes
4answers
4k views
Undoing a git pull --rebase
Hey I'm new to git and I need to undo a pull, can anyone help?!? So what I've done is...
git commit
git stash
git pull --rebase
git stash pop
this created a bunch of conflicts and went a bit ...
9
votes
2answers
4k views
Git push only for bare repositories?
When I tried 'git push origin master' to remote repository on my external disk, git warning occured stating that pusing to checkout repository will in next releases of git refused by default. On ...
8
votes
1answer
318 views
How to pull remote branch from somebody else's repo
I've got a project hosted on GitHub which somebody has forked. On their fork, they've created a new branch "foo" and made some changes. How do I pull their "foo" into a new branch also named "foo" in ...
7
votes
2answers
3k views
How to push/pull Git rebase
I'd like to use git rebase so as to cleanly merge a feature in the master branch (in less commits or at least at the top of the change log). Note that I'm the only one working on the repository.
...
6
votes
3answers
116 views
preventing git merge to master branch
I am using branching to create and deploy custom instances of out platform. These instances usually start as a branch from the 'master' branch, get customized somewhat, get deployed into testing and ...
6
votes
1answer
150 views
Performing a git pull in pure PHP
I was wondering if anyone knows of a library or how to perform a get pull request with pure PHP, without git being installed on the server.
First of all, is this even possible? I have seen the odd ...
6
votes
1answer
2k views
GIT pull/fetch from specific tag
Is there a way to pull/fetch code from a specific tag in a repo.
Am aware that after clone, i can checkout to the tag but is it possible to specify a tag during a pull?
In ClearCase i can rebase or ...
5
votes
1answer
64 views
How to prevent merge from falling back to normal merge strategy when a fast-forward merge is not possible?
The git merge command has an option to perform fast-forward merge, but this is not what I want, because if it can't do a fast-forward merge, it uses the normal merge.
Is there a git command which ...
5
votes
1answer
255 views
What is the difference between clone and mkdir->cd->init->remote-add->pull?
After setting up a repo on Github, there seems to be two ways to pull that repo into a local repo.
Firstly, I could create a directory, initialize a blank repo, add a remote and then pull changes ...
5
votes
4answers
2k views
How Do I 'git fetch' and 'git merge' from a Remote Tracking Branch (like 'git pull')
I have set up some remote tracking branches in git, but I never seem to be able to merge them into the local branch once I have updated them with 'git fetch'.
For example, suppose I have remote ...
4
votes
1answer
121 views
git pull origin master does not update origin/master?
According to the documentation, git pull performs a git fetch then a git merge, however in that case performing git pull origin master should perform a git fetch origin master right? However, it ...
4
votes
2answers
580 views
detail change after git pull
After git pull, its output gives a summary on the change amount. If I want to see the detail change of each file or some file, how can I?
Update:
Thanks. I am not sure why I cannot add comment or ...
3
votes
1answer
79 views
How to fix a deleted git commit branch or refs?
Ok, I got a little problem with git. Seems by accidentally, I delete one of git commit branch / refs / or something. So.... every time I try to use the "git push" there is always an error like below : ...
3
votes
1answer
455 views
git pull says up-to-date but git push rejects non-fast forward
I've just pulled a new branch, made some local changes, comited and tried to push. I was given this error: ! [rejected] groups -> groups (non-fast forward)
So I tried a to pull but was told Already ...
3
votes
3answers
207 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
844 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
3answers
4k views
Unable to `git submodule foreach git pull`
This question is based on this thread.
My .gitmodules is at my Home
[submodule "bin"]
path = bin
url = git://github.com/masi/bin.git
My folder -structure at my Home:
~
|-- ...
2
votes
2answers
41 views
Troubleshooting git pull
I've set up a git repo via ssh on an Ubuntu box I'm using as a media center/backup server.
the steps I took were:
cd repos
git init <repoName>
cd <repoName>
git config --bool core.bare ...
2
votes
2answers
139 views
pull-only repo's 'git status' saying the branch is ahead of origin/master. Why?
So here's the situation:
$ git status
# On branch master
# Your branch is ahead of 'origin/master' by [x] commits.
#
There are several questions about this on SO already, but none seem to ...
2
votes
2answers
190 views
Git pull/fetch with refspec differences
Using refspec is a convenient way to grab a remote branch and create a similar one but with given name (or the other way round: create a remote one with a given name different from the local one). I'm ...
2
votes
2answers
32 views
How to pull updates from remote branch
There is remote branch: R
There is local branch: L (which was created based on R)
So the graph is
R--R1---R2---
\
L--L1--
Right now, I just need keep L branch always have the ...
2
votes
1answer
230 views
Can't commit changes to github
Whenever I try and to commit changes to my github repo I get this error.
To git@github.com:antarr/3skeleton.git
! [rejected] master -> master
(non-fast-forward)
error: failed to
...
2
votes
2answers
181 views
Git authentication - pull as a new user
The following set of commands worked correctly
$ mkdir carboncake
$ cd carboncake
$ git init
$ git remote add origin gitosis@myserver.net:repositories/carboncake.git
$ git pull
But when i tried ...
2
votes
3answers
73 views
git - changing versions of code?
Right now my method of using git is to develop a website locally and when it's looking good, to git push origin master and then ssh into the server and git pull origin master. I'm curious if there's a ...
2
votes
2answers
291 views
synchronize between 2 git repositories
I have 2 bare repositories. They are made like this:
ssh git@primary.com
git init --bare repo1
ssh git@backup.com
git clone --bare git@primary.com:repo1
One is used for development (let's call it ...
2
votes
0answers
1k views
GIT pull error - remote object is corrupted
$ git pull
remote: fatal: object 21f3981dd35fccd28febabd96f27241eea856c50 is corrupted
error: git upload-pack: git-pack-objects died with error.
fatal: git upload-pack: aborting due to possible ...
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 ...
2
votes
2answers
508 views
How to find if a branch is a locally tracked branch or user created local branch?
I have a remote tracking branch tracked locally in my local repository using 'git branch -b branch-name origin/branch-name'.
My remote branch is test2/test2 (origin/branch-name) which is being tracked ...
1
vote
2answers
37 views
How can I setup a non-bare git repo on my server?
I'm trying to setup a decent development pattern with my friend. The plan is that we do independent development on our own computers, then push to the dev server for testing, and then we push from ...
1
vote
4answers
103 views
Git: How to check if a local repo is up to date?
I would like to know if my local repo is up to date (and if not, ideally, I would like to see the changes).
How could I check this without doing git fetch or git pull ?
1
vote
2answers
103 views
How do I pull/fetch with Git *INTO* a bare repository?
I'm writing a tool to backup all my repositories from Bitbucket (which supports Git and Mercurial) to my local machine.
It already works for Mercurial, where I do it like this:
create a new empty ...
1
vote
1answer
119 views
executing a git pull from a different directory
I'm configuring calimoucho (a little play continuos integration server), and for it to work I need to run a command to pull a cloned git hub repository from outside it.
to be more precise, I'll ...
1
vote
1answer
46 views
Git --bare … Why does fetch not always show the most recent commits?
I have a few GIT repos that I mirrored locally to show up in my JIRA instance, but I have noticed some (to me) strange behaviour.
I have a repo, we will call this "myrepo". If I do a git clone, and ...
1
vote
1answer
118 views
git pull analogous to / opposite of git push -f?
Sometimes, esp. when I'm the only one working on a remote repository, I like rewriting the history with git rebase -i and git push origin master -f.
How do I do a forced git pull origin master ...
1
vote
0answers
85 views
Submodules and 'git pull --rebase'
We recently switched to git and are trying to use Submodules to include our Common libraries.
No matter what we do we can not get 'git pull --rebase' to work in the Super or Submodule.
We get:
...
1
vote
2answers
313 views
Git pull results in “needs update” and files shown as modified
Upon pull (into a clean production-type repo) all the changesets come across and cause the files to appear modified and needing a commit. The git log does not show the commits that should have caused ...
1
vote
2answers
638 views
do a git pull to overwrite local changes
Ok, there has certainly been posts around for this, but I actually did a commit because i thought it was the right thing to do.
So, I have 2 repos, one development and one production. I had to edit ...
1
vote
3answers
97 views
Do you need a 'remote update' before doing a 'pull' in Git
Assuming I've done the following from c:\, what is proper way to get the latest code from the remote origin?
# Create repo...
mkdir Test
cd Test
git init
...create files
git add .
git commit -a -m ...
1
vote
1answer
148 views
How do I setup git to push and pull from the current branch?
So I have two tracked branches in my repo, 'testing' and 'master'. These are tracking to the same named branches on my remote server. I have the .gitconfig option for push.default set to 'tracking'. ...
1
vote
3answers
950 views
Git pull from another users working directory
Is it possible to pull specific files or changes from another users working directory using thier Local IP address?
e.g.
git pull http://192.168.1.101/sandbox/somefile.php
It should be noted that ...
1
vote
1answer
334 views
Git pull not updating, repo inconsistent?
I have a strange problem with git configured using DAV on apache2.
I'll provide more details, if needed, but here is a high-level overview of the problem.
I have 3 clones of a repository:
the bare ...
1
vote
1answer
295 views
What can I do when git push fails with …“local out of date”?
I'm sure this is a pretty easy fix, but I'm not sure why my pushes to GitHub are failing.
Right now it looks like:
$ git push origin master
To git@github.com:user_name/project_name.git
! [rejected] ...