Re: [git-users] How do I find the branch of each parent of a merge commit?

2014-03-31 Thread Philip Oakley
- Original Message - From: Alex Rodrigues To: git-users@googlegroups.com Cc: Alex Rodrigues ; Philip Oakley Sent: Monday, March 31, 2014 8:56 PM Subject: Re: [git-users] How do I find the branch of each parent of a merge commit? Perhaps I should explain what I am trying t

Re: [git-users] How do I find the branch of each parent of a merge commit?

2014-03-31 Thread Alex Rodrigues
Perhaps I should explain what I am trying to do. We have several project branches where developers commit their code (A "project" is a set of related features). The project branches are frequently merged to an integration branch where the code is compiled and then deployed from. (1 integration

Re: [git-users] Re: Access git objects

2014-03-31 Thread Ashutosh Das
Thanks Gergely and Ferris :) On Mon, Mar 31, 2014 at 7:39 PM, Thomas Ferris Nicolaisen wrote: > On Monday, March 31, 2014 12:06:38 PM UTC+2, Ashutosh Das wrote: >> >> Is there any working tutorial for accessing git objects ? I found this on >> google http://githowto.com/git_internals_worki

[git-users] Re: Access git objects

2014-03-31 Thread Thomas Ferris Nicolaisen
On Monday, March 31, 2014 12:06:38 PM UTC+2, Ashutosh Das wrote: > > Is there any working tutorial for accessing git objects ? I found this on > google > http://githowto.com/git_internals_working_directly_with_git_objects

Re: [git-users] Clone thinks origin has a removed branch

2014-03-31 Thread Nelson Efrain A. Cruz
Hi, i think that prune it's what you are asking for, just like Konstantin explain to you: it removes locals refs to remotes branches that no longer exists, once they are removed they will not appear in your repo. 2014-03-31 1:19 GMT-03:00 Fredrik Linder : > > 'git remote prune origin' removes lo

[git-users] Commit count in post-receive hook

2014-03-31 Thread Web developpement
Hi, first sorry for my english :p I try to deploy a web application when I push commit from my local to my bare repository. I use post-receive hook and want to create a file (not versionned) containing some revision informations. For this purpose, I launch the following commands in my post-rece

Re: [git-users] Access git objects

2014-03-31 Thread Gergely Polonkai
That tutorial also have an aliases section at [1]. According to that, `git hist` is actually git log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short [1] http://githowto.com/aliases/ On 31 March 2014 12:06, Ashutosh Das wrote: > Is there any working tutorial for accessing git object

[git-users] Access git objects

2014-03-31 Thread Ashutosh Das
Is there any working tutorial for accessing git objects ? I found this on google http://githowto.com/git_internals_working_directly_with_git_objects but the first command " git hist --max-object = 1 " is not working . Any idea what is the actual command for git hist --max-object =1 ?