[git-users] Re: More specific

2009-10-23 Thread Alan Hawrylyshen


On 2009/10/23, at 09:10 , m.m-o.net wrote:


 Well, I ll try to ask more specific. Is there a way to use a repo
 where we can put our work, or branches of the work together and where
 everyone can pull from? Is there a way to do so without paying monthly
 fee and without using github? Github is not possible for us because we
 cannot publish our stuff before the final colloquium. I neither have a
 interconnection that is fast enough for a server nor own a remote one.

 Is there a way to use a ftp account for that?


It can be done with gitosis and a single SSH account dedicated to this  
purpose.
That is likely the minimum you need, or you can use WebDAV. WebDAV  
works VERY slowly
compared to the SSH mechanism. I've been much happier with gitosis for  
hosting privately.

http://eagain.net/gitweb/?p=gitosis.git;a=summary

Some documentation and  user experience stories:

http://www.shakthimaan.com/installs/gitosis.html
http://hokietux.net/blog/?p=58 - would not load for me
http://wiki.archlinux.org/index.php/Setting_Up_Git_ACL_Using_gitosis
http://eagain.net/gitweb/?p=gitosis.git;a=blob;f=README.rst --  
official embedded docs


Alan Hawrylyshen

--
Alan Hawrylyshen
a l a n a t p o l y p h a s e d o t c a




--~--~-~--~~~---~--~~
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
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en
-~--~~~~--~~--~--~---



Re: [git-users] Re: Ambiguous ref names

2009-11-20 Thread Alan Hawrylyshen

On 2009/11/20, at 00:58 , Michael P. Soulier wrote:

 I don't know if you can nest names like that. Try using referances that aren't
 substrings of each other.



Sure you can. Think of :

release-1.0 and
release-1.0-patch-1

I'd say that is a common use case.

I've seen he ambiguous messages when I track remotes with the same name locally 
using git svn as the origin.
eg) trying to branch and track a remote/foo that originates as a branch in an 
svn repository.

I cannot reproduce it easily since I've started a convention of using local- to 
prefix my tracking branches.

Alan Hawrylyshen
--
Alan Hawrylyshen
a l a n a t p o l y p h a s e d o t c a



--

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-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=.




Re: [git-users] question regarding multiple ssh keys

2009-12-01 Thread Alan Hawrylyshen
What is the output of 

ssh -vvv g...@my_personal_account.github.com 

and 

ssh -vvv g...@my_work_account.github.com
?

There might be a clue in there to the reasons behind the troubles.
I've been using git with multiple identity files and a single server, 
differentiated only by hostname with no problems.

HTH,
Alan

--
Alan Hawrylyshen
a l a n a t p o l y p h a s e d o t c a



--

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-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




Re: [git-users] list files under tag ???

2009-12-06 Thread Alan Hawrylyshen
Perhaps another clarification: A commit is not just the files modified  
by that commit but the state of the whole working view / repository at  
that commit. That was an a ha! moment for me.

Alan

Sent from my mobile device.

On Dec 6, 2009, at 21:56, Paul Beckingham p.becking...@gmail.com  
wrote:

 Vijay,

 If you make 10 commits, then tag the 10th commit, then that tag only  
 applies to that last commit.  The tag does not apply to commits 1  
 through 9, nor does that tag apply to an 11th commit.  Just the  
 one.  It's really no different to other systems, although it might  
 sounds like it is.  You would expect to tag a certain file version,  
 but not the earlier or later version.  Git just doesn't do files -  
 it does changesets (commits).

 Take a look at this (you could try it yourself):

 $ git init tagtest
 Initialized empty Git repository in /home/paul/tagtest/.git/
 $ cd tagtest
 $ date  file
 $ git add file
 $ git commit -m zero
 [master (root-commit) 815ce88] zero
  1 files changed, 1 insertions(+), 0 deletions(-)
  create mode 100644 file
 $
 $ date  file; git commit -a -m one
 [master 921ae3e] one
  1 files changed, 1 insertions(+), 0 deletions(-)
 $
 $ date  file; git commit -a -m two
 [master 5f30367] two
  1 files changed, 1 insertions(+), 0 deletions(-)
 $
 $ date  file; git commit -a -m three
 [master b256a7b] three
  1 files changed, 1 insertions(+), 0 deletions(-)
 $
 $ date  file; git commit -a -m four
 [master 77f0a1b] four
  1 files changed, 1 insertions(+), 0 deletions(-)
 $
 $git tag -a Vijay -m Vijay 5f30367
 $git log --oneline --decorate
 77f0a1b (master) four
 b256a7b three
 5f30367 (tag: Vijay) two
 921ae3e one
 815ce88 zero

 See how the tag only applies to that one (red, highlighted) commit?


 maybe i am asking a basic question, sorry for my ignorance. :-(

 No no, absolutely not - this is just how it feels to learn git.

 Paul
 --

 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-us...@googlegroups.com.
 To unsubscribe from this group, send email to 
 git-users+unsubscr...@googlegroups.com 
 .
 For more options, visit this group at 
 http://groups.google.com/group/git-users?hl=en 
 .

--

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-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




Re: [git-users] listing what files were changed in commit

2010-03-19 Thread Alan Hawrylyshen

git log --stats ?

Alan

Sent from my mobile device.

On 2010-03-19, at 10:22, Marcin Krol mrk...@gmail.com wrote:


Hello,

I can list patches using git log -p. But sometimes that's too  
detailed and I just would like to display a list of files that were  
affected in a given commit.


Is there some way to do it?


--

Regards,
mk

--
Premature optimization is the root of all fun.

--
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-us...@googlegroups.com.
To unsubscribe from this group, send email to git-users+unsubscr...@googlegroups.com 
.
For more options, visit this group at http://groups.google.com/group/git-users?hl=en 
.





--
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-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.