On 4/13/07, Brian Paul <[EMAIL PROTECTED]> wrote: > Hmmm, I don't understand what git did here. > > I did a 'git pull origin' to get George's check-ins this morning. Then, > I made a change to glxext.h, commited it and did a 'git push origin' (my > usual routine). > > Now the commit message that got mailed out inludes George's changes plus > some others that I did yesterday. Did someone do something wrong? > > BTW, I'm also curious why some check-in emails have the subject: > mesa: Branch 'master' > while other check-ins have the subject > mesa: Branch 'master' - N commits > > -Brian >
It seems George somehow push the origin head to the common repository. Then when you do git push origin git will try to push anythings branch that as same in the shared and local repository this why now this get pushed to origin. Thus now we need to do git push origin master to update master and to remove git branch origin in the shared repository I guess for the second things we need help of an admin. In btw i really use git fetch then git rebase origin (in fact you could do a small script do do this two command in one) insted of a pull, and then git push. best, Jerome Glisse ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Mesa3d-dev mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/mesa3d-dev
