From: Konstantin Khomoutov <flatworm@users.sourceforge.net>
To: Vibin Nair <vibin@volitionlabs.com>
Cc: git@vger.kernel.org
Subject: Re: Git clone - head not pointing to master
Date: Fri, 30 Dec 2011 16:40:58 +0400 [thread overview]
Message-ID: <20111230164058.f127bf2d.kostix@domain007.com> (raw)
In-Reply-To: <4EFD9F11.5030309@volitionlabs.com>
On Fri, 30 Dec 2011 16:52:57 +0530
Vibin Nair <vibin@volitionlabs.com> wrote:
> I am a Git beginner. Recently i started working on a codebase (that
> is checked in to a git repository) of our client, who is not very
> aware about how git works.
> The repository has multiple branches such as
>
> origin/user1
> origin/master
> origin/user2
>
> Now when i take a clone of this repository : git clone <repo-url>, a
> clone of the repo is created on my machine.
>
> But when i do a : "git branch" it shows
>
> user1 *
>
> which means that the "head" is pointing to the "user1" branch.
>
> The client told me that all the recent code were being merged into
> the "master" branch and hence the "user1" branch has code which is
> older than "master" branch.
>
> I had 2 queries :
>
> 1. Is it possible to make the "head" of the remote point to "master"
> instead of "user1", so that other members of my team get the latest
> code when they try to clone the repository.
`git clone` checks out the branch which the HEAD ref in the remote repo
points to. You can use `git symbolic-ref` to retarget HEAD if it's a
bare repository. If the repository is non-bare HEAD tracks what's
checked out, so it can be changed by doing `git checkout`.
Note that you can pass the "-b <branch>" command-line option to `git
clone` to make it create a local tracking branch and check it out for
an arbitrary remote branch <branch>.
> 2. Is there any way to safely merge "user1" to "master".
This question has little sense because it heavily depends on what you
mean by "safely". The correct way to state a question like this is to
think whether merging user1 to master has sense from the project's
development standpoint.
next prev parent reply other threads:[~2011-12-30 12:41 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-30 11:22 Git clone - head not pointing to master Vibin Nair
2011-12-30 12:40 ` Konstantin Khomoutov [this message]
2011-12-30 18:45 ` Jakub Narebski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20111230164058.f127bf2d.kostix@domain007.com \
--to=flatworm@users.sourceforge.net \
--cc=git@vger.kernel.org \
--cc=vibin@volitionlabs.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).