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 git dirs at AIX box and then I can build.

At AIX box how I can see that I am at master or inside the branch. What changes inside .git that drives which branch I am on ?

Thanks in advance.

link|improve this question

0% accept rate
You should accept answers for your other questions before you ask more. – Andrew Marshall Feb 20 '11 at 19:31
feedback

3 Answers

git branch with no arguments displays the current branch marked with an asterisk in front of it:

magnus@fatso:~/gittest$ git branch
* master
  someotherbranch

In order to not have to type this all the time, I can recommend git prompt:

http://volnitsky.com/project/git-prompt/

link|improve this answer
feedback

You can look at the HEAD pointer (stored in .git/HEAD) to see the sha1 of the currently checked-out commit, or it will be of the format ref: refs/heads/foo for example if you have a local ref foo checked out.

EDIT: If you'd like to do this from a shell, git symbolic-ref HEAD will give you the same information.

link|improve this answer
feedback

.git/HEAD contains the path of the current ref, the working directory is using as HEAD.

link|improve this answer
Great I see that. What you suggest ? Shall I switch branches in linux box and then do few edit thru AIX box or keep changing .git/HEAD thru AIX box. – user79292 Feb 20 '11 at 19:53
1  
I think the safest way to change the current branch you are on is by using git's own methods, i.e. git checkout. – poke Feb 20 '11 at 19:59
Ok it means always do checkout on linux box but still i can perform edits thru AIX box on source files. – user79292 Feb 20 '11 at 20:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.