Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
3answers
7k views

git push tag -> master

I am trying to accomplish something that is probably very simple, though I cannot figure out how, or what I'm doing wrong. So to get straight to the point: I want to push for example my tag 1.0.0 to ...
9
votes
4answers
397 views

How to convert a readonly git clone from github to a forked one

From time to time I encounter this issue. Let's say that I did following to read the source code of rails because I am running into some issues. git clone git://github.com/rails/rails.git During ...
8
votes
1answer
316 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 ...
8
votes
1answer
3k views

git remote prune – what am I doing wrong?

From the man page: Deletes all stale tracking branches under <name>. These stale branches have already been removed from the remote repository referenced by <name>, but are still locally ...
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 ...
5
votes
2answers
260 views

git push to remote branch

Folks, I had cloned a repo. I created a branch out of it to work on a feature by issuing the following command: git branch fix78 then I worked on that branch by git checkout fix78 I continued to ...
5
votes
2answers
97 views

How to follow a file in git

I have deleted a file a couple of times in git, but it keeps turning up again as other branches are merged; I guess something like this: o-- a topic --o / ...
5
votes
2answers
467 views

Git create remote repository on push

I have been trying to figure this one out but I am having a hard time doing so. I am currently working on an open source project that requires me to allow a user to push to remote repository without ...
5
votes
3answers
2k views

How to view remote Git revision on Heroku

For deploying to Heroku, I use git push heroku master. But how do I see which revision I pushed up to heroku? (I'm often in doubt if I pushed the recent version up) For those not familiar with it, ...
4
votes
1answer
623 views

Push Git branches directly into a live server directory so files are seen live

How can I set up remote directories in Git where I can locally push a stage branch to the remote and see the live changes on a staging server, like stage.example.com? The notion I have (part of why I ...
4
votes
2answers
407 views

How do I check if a file exists in a remote?

Is there a way to check if a file under specified, relative path exist in a remote? I'm fine with fetching the info first if it's the only option. In other words I'm looking for git-ls-files with an ...
3
votes
2answers
142 views

git clone does not checkout active branch

I have a remote bare repository with two branches 'master' and 'testing', where HEAD refers to 'testing'. When cloning this repository git checks out 'master', if 'master' and 'testing' are on the ...
3
votes
2answers
207 views

How can I push a local Git branch to a remote with a different name easily?

I've been wondering if there's an easy way to push and pull a local branch with a remote branch with a different name without always specifying both names. For example: $ git clone myrepo.git $ git ...
3
votes
3answers
1k views

Using git to publish to a website

I used this guide to use git to autopublish my changes on my website when I push to my remote origin git repository: http://www.lwp.ca/james/2010/03/using-git-to-manage-online-website-projects/ ...
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
3answers
2k views

git rebase onto remote updates

I work with a small team that uses git for source code management. Recently, we have been doing topic branches to keep track of features then merging them into master locally then pushing them to a ...
3
votes
2answers
282 views

Branching my own project from github, then pushing it back to github with branches intact

This feels like im missing something obvious, but i've been reading tutorials for 3 days and can't seem to make it happen. I have a private repo on github. I want to run it as two separate branches. ...
3
votes
4answers
221 views

Preserve git remotes

I have fixed network of git remotes and I would like them to be attached to repository. Unfortunately git-clone doesn't clone remotes. Is there a way around it?
2
votes
1answer
54 views

GIT clone and first GIT push issue

I have two issues. I have Ubuntu 10.10 and I have installed git server with gitolite tool. Everything worked quite good. The gl-setup command of gitolite created 2 repositories: gitolite-admin and ...
2
votes
1answer
65 views

Merging remote branches in git

I am developing a system where I'm following the trails of another project, adding my own stuff but not directly to the original project. I setup my repository with three remote branches: Master - ...
2
votes
2answers
94 views

Team-based Git Workflow

I've recently setup a Gitolite Ubuntu server, along with repositories and users (within groups). Everything is going swimmingly for things actually working. In my Git research, I've found a specific ...
2
votes
2answers
60 views

Is checking out remote branches in git safe now?

I've just started learning Git, and the tutorial I'm using says that when cloning remote repositories, switching to a remote branch is a big no-no. That is - if I've cloned a repository that has a ...
2
votes
2answers
314 views

Why am I merging “remote-tracking branch 'origin/develop' into develop”?

I'm the only one in my organization who's making commits with the following message: Merge remote-tracking branch 'origin/develop' into develop Not sure what I'm doing to cause them, but I'd ...
2
votes
2answers
318 views

git: disable automatic pushing to a certain remote branch

When I run git push, my local branch some_branch is pushed to a remote branch some_remote\some_branch. When I run git remote show some_remote I get: Local refs configured for 'git push': [cut] ...
2
votes
4answers
572 views

How do I add a remote Git repository to an Ubuntu Server?

I have created a Git repository on my Desktop machine (Windows 7) with: git init git add <all my files> git commit -m "added my files" Now I have installed a new Ubuntu Server 10.10 on a ...
2
votes
1answer
249 views

git rebase remote, but keep changes locally for later commit

I goofed and committed development changes on the master, and pushed them upstream. Whats the best way to back out those changes from the remote repo, but keep a branch locally for later merging into ...
2
votes
3answers
1k views

Forcing Remote Repo to Compress (GC) with Git

I'm using Git to version a series of binary files. They compress pretty well, but my central repos do not seem to be compressing when I push to them. They're eating up a decent amount of my quota, so ...
2
votes
1answer
272 views

Cleaning remote Git branches

I have moved an SVN repo to Git and probably due to a number of clonings, I'm now left with a bunch of branches that look like BranchA origin/BranchA remotes/BranchA remotes/origin/BranchA ...
2
votes
1answer
288 views

Suddenly unable to git fetch from origin

In my repository, I remotely track our main repository, which is bare. I've never had any problems with fetching from origin the past. However, when I tried to remote update this morning, I got the ...
1
vote
3answers
67 views

How do I hide a file from a single remote repo in git?

I've got a project I'd like to start sharing on github which I'd set up as another remote repo. But I've got some sensitive configuration information (amazon s3 account details) that I don't want to ...
1
vote
1answer
128 views

Git feature branches workflow

I am trying to contribute to a project and I'd like to use git-flow workflow(?) on what I work. Say, I have checkout'd the develop branch of the remote repository (github) and that I've setup 2 ...
1
vote
3answers
96 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
3answers
149 views

Track branch after creation?

Here's my scenario (it's a very simple one): I have created a branch locally, without using --track. I made a few commits and pushed it like so: git push origin test But now I don't want to have to ...
1
vote
2answers
70 views

Remote branch with multiple local tracking branches

Is it possible, that a remote branch can have multiple local tracking branches? Or would that confuse the push/pull commands?
1
vote
2answers
200 views

GIT: Deleteing or undoing a push to a remote repo

Hello experts I am a git newbie so go easy on me please ! I created a remote git repository and proceeded to push code to it from the wrong local repo. The local repo is fine I just want to kill the ...
1
vote
1answer
123 views

Deleting a remote branch works, local pruning does not. why?

On my setup, this seems to work to delete a remote branch: git push origin :foo Because when I do it the first time, it's successful, but the second time, it fails because it says the remote branch ...
1
vote
1answer
293 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] ...
1
vote
4answers
1k views

Cannot remove git repository completely

I have been using git on windows-msysgit. Whenever I try to remove a repository completely either using explorer or using $ git rm -rf ptp/ fatal: Not a git repository (or any of the parent ...
0
votes
1answer
37 views

Is there any way to clean up remote repositories while keeping these repositories' commit logs?

I know how to delete remote branches, so this question isn't: cleaning up old remote git branches or how to manage obsolete branches on github Rather, my problem is that deleting old feature branches ...
0
votes
3answers
40 views

How can I display the location of remotes for a git repository?

Is there a way to display all known information about a repository's remotes, either individually or all at once?
0
votes
2answers
99 views

How to get a list of all refs a git push would push?

We're trying to implement a git workflow where there exists a pre-receive hook on the remote repo to validate that all pushed refs have commit messages that contain certain required information. In ...
0
votes
1answer
27 views

Git remote branches are wrongly listed twice

If I do a git branch -a, I get my local branches listed correctly, but my remote branches are listed double... e.g. master remotes/github/master remotes/origin/master I think the reason for ...
0
votes
2answers
58 views

Using xargs in msysgit to remote prune all doesn't seem to work

I have multiple remote references, and there's no "git remote prune --all" so I attempted "git remote show | xargs -n 1 git remote prune" but it doesn't work. I'm running msysgit 1.7.4. I know it ...
0
votes
1answer
98 views

git remote /home/username/www/lorem.git

How can I use /home/username/www/example.git with remote add command? if I use this: git remote add origin user@example.com:/home/user/www/example.git git push origin master I got this ...