Re: [git-users] git pull --rebase ?

2013-11-15 Thread Konstantin Khomoutov
On Thu, 14 Nov 2013 15:03:29 -0800 (PST) Vicki Kozel wrote: > We've recently switched to Git and Gerrit, and are drafting the best > practices workflow for our development team. One thing we want to > avoid is "merge" commits that have two parents since if these commits > fail Gerrit's review it

Re: [git-users] .gitignore question

2013-11-15 Thread Edwin Castro
On 11/13/13, 6:15 AM, wtriker@gmail.com wrote: > '/system/cache' and all start with 'cache.' Sounds like you want to match any number of directories prior to the system directory. Try this pattern: **/system/cache/cache.* -- Edwin -- You received this message because you are subscribed to

[git-users] Git commit comment

2013-11-15 Thread nanna
Hi I would like to list out the commit comment given on github from command line. Is it possible to do that? I can able to see the comment on particular commit “review done” in github. But if i browse through git log from cmd, i couldn’t do. -- You received this message because you are sub

[git-users] Re: git pull --rebase ?

2013-11-15 Thread Alex Lewis
Hi Vicki, I *think* I understand what you want to achieve, which is... 1. Create a feature branch from master which is where a dev will do their work. 2. They want to update their branch time-to-time with the latest changes in master. 3. Eventually get their feature-branch back

Re: [git-users] .gitignore question

2013-11-15 Thread wtriker . ffe
Thanks for the replies. I did not understand the ** explanation vs * in the documentation. I'll give that a try. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an e

Re: [git-users] After git -am commit changed files are not in repo

2013-11-15 Thread Dave Kennedy
Solved I needed to push my changes to the remote repo! git push -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to git-users+unsubscr...@googlegroups.com.

Re: [git-users] Git commit comment

2013-11-15 Thread Gergely Polonkai
My first guess is that you haven't updated your local repository from GitHub. Have you issued "git pull" before viewing your local log? On 15 November 2013 11:28, nanna wrote: > Hi > > I would like to list out the commit comment given on github from command > line. > > Is it possible to do that

[git-users] Branching with dependencies

2013-11-15 Thread Andrew
Hello, I'm in the process of moving to Git. Mostly I am very happy but I figure out, or find a reference anywhere, of how you deal with multiple dependencies in Git. My problem: suppose that I have two independent branches A and B, which may not even touch the same files. Now I start a new de

Re: [git-users] Branching with dependencies

2013-11-15 Thread Magnus Therning
On Fri, Nov 15, 2013 at 01:33:40PM -0800, Andrew wrote: > Hello, > > I'm in the process of moving to Git. Mostly I am very happy but I > figure out, or find a reference anywhere, of how you deal with > multiple dependencies in Git. > > My problem: suppose that I have two independent branches A a