Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

80
votes
13answers
72k 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 ...
15
votes
2answers
7k views

Having a hard time understanding git-fetch

I am having a hard time understanding the nuances of git-fetch. I understand that doing a fetch, fetches the remote refs into a local tracking branch. I have a few questions though: Can it be ...
6
votes
3answers
1k views

How to update a git clone --mirror?

I have created a git repository to mirror a live site (which is a non-bare git repository): git clone --mirror ssh://user@example.com/path/to/repo Now, to keep this mirror clone updated with all ...
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
3answers
418 views

Can “git fetch” be told not to use “git upload-pack” for local repositories?

When using git fetch to fetch refs from one (very large) repository to another one on the local machine, git upload-pack takes a very long time to create pack files. In the local case there's not ...
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
116 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 ...
3
votes
3answers
178 views

git fetch with path instead of remote

I understand the idea of running git fetch <remote>, because the remote branches are then available with git checkout <remote>/<branch>. But how does it work if I just run git ...
3
votes
1answer
425 views

Why include `master` in the command `git fetch upstream master`?

In the section Pulling in upstream changes on help.github's Forking a project it states: Some time has passed, the upstream repo has changed and you want to update your fork before you submit a ...
2
votes
2answers
136 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
184 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
825 views

“fetch --all” in a git bare repository doesn't synchronize local branches to the remote ones

I'm trying to synchronize periodically a git bare repository, my local branches are created using the "--track" option. here is my config (without unnecessary things): [core] bare = true ...
2
votes
2answers
289 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 ...
1
vote
1answer
15 views

Git svn fetch check if no commit left to merge

I have cloned a svn project repo using git-svn. When I fetch commits, how do I check that there are no commits to be merged left for all branches from the fetch I did?
1
vote
4answers
100 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
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
39 views

git - how to mirror file from other repo

I've a problem which probably can't be solved, but I'll ask anyway. I do have one git repository, and I need one file to be mirrored from another one. There is one .xsd file in the repo I need to have ...
1
vote
1answer
110 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
2answers
83 views

how do I clone files with spaces in the filename

When I clone the repo using msysgit, all the files with spaces in the filename are not brought down, and then show as deleted in the status. The filenames looks something like this: styles-ie ...
1
vote
1answer
247 views

Git progress watch while pulling / fetching

Here is my problem: When I'm doing pull/fetch of some big repository i want to show progress somewhere else than in console (for example on website) I know that in git 1.7.1.1 there is option ...
1
vote
1answer
105 views

How do I force fetching of tags if I have the --no-tags option set

Whenever I run git fetch it fetches all the tags from origin. In a project with lots of tags, this can get quite bothersome. So I ran git config remote.origin.tagopt --no-tags so fetching will ...
0
votes
3answers
55 views

How to git fetch from a central remote repository?

I'm new to Git and I'm a little confused how to use "git fetch" I have a central repository that I access using SSH, I have created a repository using git clone, just like this: $ cd ...