Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
15k views

How do I change a Git remote HEAD to point to something besides “master”

Short version: How do I set a Git remote's HEAD ref to point to something besides "master"? My project has a policy not to use a "master" branch (all branches are to have meaningful names). ...
12
votes
2answers
5k views

Git merge errors

I have a git branch called 9-sign-in-out with the perfectly working code that I would like to become the "master" I'm currently on the master branch. $ git branch 9-sign-in-out * master I'm trying ...
11
votes
3answers
590 views

Git - When to Delete Branches

Suppose we have an application that's stable. Tomorrow, someone reports a big ol' bug that we decide to hotfix right away. So we create a branch for that hotfix off of "master", we name it ...
9
votes
4answers
3k views

Modified files in a git branch are spilling over into another branch

I am working on a git repository with a master branch and another topic branch. I have switched to topic branch and modified a file. Now, if I switched to master branch that same file is shown as ...
8
votes
2answers
2k views

create a git symbolic ref in remote repository

In my remote bare repository the HEAD is pointing to "refs/heads/master" and I want it to point to "refs/heads/other". I am not able to go to remote repository directory and run git symbolic-ref. Is ...
6
votes
1answer
166 views

How to change git branch output order

When I type git branch, I receive a list of branches that appear to be sorted alphabetically instead of being sorted by their creation time. Is there a way to make the output of git branch sorted by ...
5
votes
1answer
431 views

Git valid branch name rules

I tried: git branch "MyProj/bin/ ignored" and received: fatal: 'MyProj/bin/ ignored' is not a valid branch name. The git-branch man page points to the git-check-ref-format man page to get the ...
5
votes
2answers
109 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 / ...
4
votes
1answer
85 views

what does this message mean? more than one branch.<name>.remote

In the output from git remote show origin, I see this message: warning: more than one branch.main_int.remote What does this mean? Is it bad, and how do I fix it, if it is bad? Thanks.
4
votes
1answer
78 views

How to organize additional project material separately with Git?

I want all project files like source code to be part of the repository. For simplicity reasons all work is done on the development branch. Furthermore, I want to include additional project material ...
3
votes
3answers
79 views

Bug fixes in a feature branch

We're using a A successful Git branching model by Vincent Driessen for our branching model. All's fine but I haven't really seen a particular issue brought up. From what I've understood, when a new ...
3
votes
1answer
82 views

Is there a simple command to convert a branch to a tag?

I am about to complete a tedious process of converting "dumb snapshots" to git. This process has been going very well (thanks to this rename process), but now I realized that some of the branches that ...
3
votes
3answers
2k views

Git: Undo last commit/merge

Hey guys, i have a litte messed up my git repo. I worked on a feature in a separet branch. After finishing the work, i switched to the master to merge it into. But my partner pushed a few files with ...
2
votes
2answers
70 views

How to forcefully delete a remote branch in GitHub?

I have 2 remote branches :pending-issues-in-project & new-issues-in-projectI tried to delete pending-issues-in-project like this : git push origin :pending-issues-in-projectbut i got this error ...
2
votes
1answer
60 views

Undo a git commit + git branch <branchname> — with a twist

I am in the process of "documenting in hind-sight" the history of an application development, by moving existing snapshots of the project's directory tree (that were saved back then by plain & ...
1
vote
2answers
81 views

How to share a git feature (or topic) branch with multiple developers

I'm following the the workflow described here, as I found many references pointing to this page as a good workflow. As mentioned in the article, "feature" branches are shared between developers, but ...
1
vote
2answers
127 views

Configuring bash_profile to show git branch returns my branch twice

# show git branch function parse_git_branch { git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' } function proml { local BLUE="\[\033[0;34m\]" local ...
1
vote
0answers
85 views

Corrupted Git Branch after suspected hard disk issue

So I was having a problem with my hard disk (I think). Everytime I ran git log commands (when running Windows through VMWare Fusion for Mac) it would throw a fatal error causing VMWare to crash ...
1
vote
1answer
34 views

Is there a better way to recover git-svn branches?

After cloning my SVN repo into GIT, I deleted in my GIT repository the SVN branches that I was not likely to use as I had not read of how to just load a specific branch. Now I need them all back but ...
1
vote
3answers
401 views

GIT - branches not closing after merge

we are pretty unexperienced in using GIT. Actually we like the idea of branches ;-) But somehow all merges from one user just don't close the branch... You can look at the image here: ...
1
vote
2answers
116 views

pushed git repsitory missing branch & tag names on gitk

I just did my first ever git push: ~/sb/ws> git push ~/gitrepo master:master Counting objects: 1360, done. Delta compression using up to 4 threads. Compressing objects: 100% (998/998), done. ...
1
vote
3answers
171 views

Does branching in git create a parent-child relationship?

If I do $ git branch a $ git checkout a Switched to branch 'a' $ git branch b $ git checkout b Switched to branch 'b' $ git branch c1 $ git branch c2 Is there any relationship between these ...
1
vote
1answer
24 views

Git - If we want to take a snapshot - should we Branch our should we Commit?

Let's say I'm working on this thing, and I want to preserve this state, so that, if something goes wrong, I can revert to it. According to this, it's not clear to me: What should we do when on ...
1
vote
3answers
501 views

How to find which git branch I am on when my disk is mounted on other server

I am new to git. Our git repo is on linux server. On linux box I can be at master or create branch and I can be inside the branch. Our git repo disk is mounted on AIX box to do BUILD. I can see ...
1
vote
2answers
219 views

Git branch structure for Client & Server

For one of my CS classes, I and a group are writing an application using a client/server architecture. I was curious what the best-practices would be for organizing the project in a Git repository. ...
0
votes
2answers
40 views

Git bare repo with multiple branches

I want to make a git bare repository with multiple branches (master, develop, release, etc..). So question is if it is possible to checkout the bare repository or how to switch among the branches ...
0
votes
2answers
62 views

Cloning a branch without merging main branch

Sometimes I want to be able to pull from a repo (via clone). But when I do that and then change to a local branch to pull-in a remote branch, git assumes I want to take the main branch and integrate ...
0
votes
3answers
50 views

Git - Correct way of setting up branches

I have a repo that I need to use to deploy the production code of an WebApp to the server. I need advise on what is the correct way of doing it(branching). I will need 3 branches(I think): - ...
0
votes
3answers
48 views

Git remote origin has two branches

I am using TortoiseGit for Windows. I see two branches on remote/origin: HEAD 20 minutes ago Some commit message. master 20 minutes ago Some commit message. I am confused why ...
0
votes
2answers
100 views

Remove a tracking from a git branch

I have a "feature/admin" branch that is tracking multiple branches (origin/feature/admin and development, the latter being local) - I want to remove the local tracking (so my local branch only tracks ...
0
votes
1answer
48 views

Deleting a branch with an invalid name in Git

I've been using Dropbox to keep my source folder synced between two computers. This folder contains my source-code which I version handle with Git. it seems that there was a file conflict and when I ...
0
votes
2answers
51 views

Git: how can I exclude just one branch from push?

I'd like to continue to push (almost) all branches with a simple git push command, but there are a few things I'd like to be able to keep in Git locally without sharing them with the rest of the ...
0
votes
0answers
166 views

How to git svn fetch only branches/tags with certain patterns?

I want to check out Boost library using git-svn, and I only want to checkout trunk and tags starting from version 1.35, i.e. tags/release/Boost_1_35 and up. My config looks like this: [svn-remote ...
0
votes
3answers
391 views

switching branches in git - when will i get “You have local changes cannot switch branches.”? [closed]

Possible Duplicates: git: Switch branch and ignore any changes without committing. Git branches behaving strangely I know that the general recommendation is to have a clean status before ...
0
votes
1answer
201 views

Git : using .gitignore with different branches

I have a pretty basic work environment but does not manage to work with Git as desired. Here is how we can describe it : two branches A and B with two files each in their working trees, the first ...
0
votes
1answer
78 views

Creating a 'git publish' alias, but need to store temporary variable

Based on this article I wanted to create a similar alias (flow described below). With the author/article's comments disabled, I thought I'd ask it here. Assuming you are on a 'topic' branch, I'd ...
0
votes
2answers
145 views

problem with commit message after conflicts been resolved when merge

I am new in Git. Currently, I am experiencing this scenario: Step 0. I am working on a sub-branch Step 1. I have added & commited file1, file2, file3 on my sub-branch with commit message msg1, ...
0
votes
1answer
164 views

Create an SVN branch from an existing Git branch

I have cloned an existing SVN project via git svn clone and no problem so far. But in the mean time i have created a branch in Git only (not in SVN) and now i would like to synchronize this branch ...
0
votes
1answer
150 views

robust deploy strategy with capistrano and git

What is the best way to set up a robust deploy strategy for a RoR app that allows for the following scenario? new feature committed new feature deployed to staging environment emergency feature/fix ...