[git-users] Re: What does git clone copy?

2012-01-20 Thread dspfun
Great, thanks for your answer! A confusing thing is the difference between: git log master and git log origin/master git log master shows the log of the remote repositorys master branch. git log origin/master shows the log of a _local_ branch which is tracking a remote branch (it is tracking

[git-users] Re: What does git clone copy?

2012-01-21 Thread dspfun
On 20 Jan, 17:08, Konstantin Khomoutov flatw...@users.sourceforge.net wrote: On Fri, 20 Jan 2012 07:01:27 -0800 (PST) dspfun dsp...@hotmail.com wrote: A confusing thing is the difference between: git log master and git log origin/master git log master shows the log of the remote

[git-users] Checking in another user's local changes to a remote repository without his password?

2012-01-22 Thread dspfun
Hi! The setup is that there is a remote repository at some site, and then each person/developer has his own local clone of the remote repository. To push any changes from a local repository to the remote repository a password is needed since ssh is used. How do I checkin another user's changes,

[git-users] Re: Checking in another user's local changes to a remote repository without his password?

2012-01-22 Thread dspfun
On 22 Jan, 14:10, Thomas Ferris Nicolaisen tfn...@gmail.com wrote: Hi Markus, Strictly speaking, authentication and authorization is outside the responsibilities of Git. You leave this to either the filesystem of the repository (which can also accessible via ssh), or use some custom

[git-users] Re: Checking in another user's local changes to a remote repository without his password?

2012-01-22 Thread dspfun
Thank you for your help! Brs, Markus -- You received this message because you are subscribed to the Google Groups Git for human beings group. To post to this group, send email to git-users@googlegroups.com. To unsubscribe from this group, send email to git-users+unsubscr...@googlegroups.com.

[git-users] Show first/original version of all files

2012-03-28 Thread dspfun
Hi, I have made a clone of a git repo. Each file has a number of modifications to it compared to when the files were put into git. I would like to see all the original/first versions of each file, how do I do this in git? Brs -- You received this message because you are subscribed to the