Re: [git-users] Git vs Subversion

2013-11-17 Thread Konstantin Khomoutov
On Sat, 16 Nov 2013 23:36:44 -0800 (PST)
Akira Tsuchiya akira...@gmail.com wrote:

 I want to ask all of you one quick question.
 
 Do you think Git will get more popularity than Subversion and
 Subversion will be obsolete in the near future?

Depend on how one is looking at it.

On the free software scene, Git is *the* leading VCS.  And while it
certainly has its shortcomings, it's already there and it still
improving.

But then there's the so-called enterprise, and people working there
quite often have different requirements and different mindsets, and
there are CEOs who are conservative, sometimes overly so.
Yes, I'm not talking about those fancy enterprises like github or
docker or you-name-it -- they're those 20% described in the
provocative [2], I'm talking about those big old enterprises existing
for many years.  They have management problems (seen that pointy-haired
boss in Dilbert cartoons?), fear of F/OSS or lack of expertise to cope
with it.
Another problem is apparent lack of enterprisey packages targeting
Git.  Subversion is a) being sold; b) enjoying a set of non-free tools
targeted at enterprises, such as server-side hosting solutions with
fancy GUI MMC snap-ins with reach access controls (seems like a
must-have feature for many shops) etc *and paid support*, well explained
in [1] by one of Git for Windows maintainers.

Another point to consider is that certain shops just do not need all
the features a powerful DVCS might give them so Subversion is just
good enough for them (see [2] again).

Also note that Subversion is not the single player in the enterprise
world -- there are also popular commercial CVCSes, rather widely
deployed.

So my take on this:
* In our IT world which is, somewhat unfortunately, driven by fad
  cycles, Subversion is definitely out of its fad cycle while Git is
  riding its popularity wave.  So it the world of F/OSS it's here to
  stay until disrupted by an equally successful project.
* Subversion is there to stay as well, and this is backed by a
  completely other set of reasons.

1. https://groups.google.com/d/msg/msysgit/phVulfbQnGM/JxELse0-HnUJ
2. http://blog.red-bean.com/sussman/?p=79

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[git-users] Re: Git with http protocol and DAV module - Do automaticlly

2013-11-17 Thread shlo . afgin

Is it impossible to do?

On Wednesday, November 13, 2013 9:57:32 AM UTC+2, shlo@gmail.com wrote:



 I follow the instruction for creating a repository with http protocol with 
 mod DAV.
 The instruction say each time user want a new repository, need to create 
 bare repository, cd to the repository directory and run:


 *mv hooks/post-update.sample hooks/post-update**chmod a+x 
 hooks/post-update* 
 *git update-server-info*
 A regular user cannot do it because he don't have login access to the git 
 server.

 I would like to know if there is a way to give a regular user to create a 
 new repository alone, from his local workstation, 
 without administrator help from the git server side?

 Thanks,


-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [git-users] Re: git svn dcommit

2013-11-17 Thread Johannes Müller
On 17.11.2013 15:13, Thomas Ferris Nicolaisen wrote:
 You cloned an empty SVN repository? That sounds a bit like a corner case..
 
 Try cloning a normal SVN repository, and see if dcommitting works there
 first.

Thanks for your help! I committed a file with svn first, then cloned
with git svn clone. Now dcommit works as expected.

 Also make sure you post your Git version and OS. 
git --version
git version 1.6.0.2
uname -a
Linux login1 3.0.93-0.5-default #1 SMP Tue Aug 27 08:17:02 UTC 2013
(925d406) x86_64 x86_64 x86_64 GNU/Linux

Regards,
Johannes

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[git-users] contributor vs collaborator

2013-11-17 Thread stoicism1
I pushed one of my projects to another repository. This new repository has 
only one collaborator who should be able to read and write to it on github. 
Now when I looked at the repository on github, I noticed that it had a 
number of contributors who contributed to the project at one time. Of 
course, this information was probably copied over from when I pushed my 
local branch to a new remote. My question is even though these contributors 
contributed to the project that was copied over, since they are not 
collaborators in the new repository, they should not be able to see it (its 
a private repository), is that correct?

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[git-users] git and public keys

2013-11-17 Thread stoicism1
I was just in a situation where I had to change a remote repository on 
github. When I went to deploy my application, I refused to deploy because 
on the 3 servers it deploys to, the keys were referencing the old 
repository not the new one. So I had to go on the 3 servers and put the 
keys in a backup directory under ~/.ssh and generate public keys for each 
server, and then upload them to the github repository. It seemed pretty 
inefficient. Is there a better way to handle this? 

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[git-users] security issue with public keys

2013-11-17 Thread stoicism1
I generated ssh public keys on server, uploaded it to github repository, so 
that I can deploy my project to the server. My question is if someone has 
access to the server and they log in and view the ssh keys, can they 
somehow read or write to the git repository on github? The github 
repository is currently set to private and I don't want anyone to read or 
write to it.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[git-users] Removing commits to another repository

2013-11-17 Thread stoicism1
I have been contributing to a remote repository for 6 months. I have made 
more than 100 commits and pushes to one of its branches. Is there  a way to 
remove all the pushed commits I contributed to that repository? 

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [git-users] Git commit comment

2013-11-17 Thread nanna
I have done git pull. and again ran the below command.
But still it wasn't show the comment on the commit. (on Github box provided 
below each commit)
Through github i able to see it.

git log --since=2013-11-14T12:00:00 --until=today --decorate=full --stat 
--branches=* --remotes=* --date=local --source


On Saturday, November 16, 2013 12:25:08 AM UTC+5:30, Gergely Polonkai wrote:

 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 nanna...@gmail.com javascript: wrote:

 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 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+...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [git-users] Git commit comment

2013-11-17 Thread Nicolas Dermine
On 18 Nov 2013 07:20, nanna nanna.ku...@gmail.com wrote:

 I have done git pull. and again ran the below command.
 But still it wasn't show the comment on the commit. (on Github box
provided below each commit)
 Through github i able to see it.

 git log --since=2013-11-14T12:00:00 --until=today --decorate=full --stat
--branches=* --remotes=* --date=local --source


Hi,

I think github commit comments are stored in their data store, not in the
repo.

nico



 On Saturday, November 16, 2013 12:25:08 AM UTC+5:30, Gergely Polonkai
wrote:

 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 nanna...@gmail.com wrote:

 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 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+...@googlegroups.com.

 For more options, visit https://groups.google.com/groups/opt_out.


 --
 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.
 For more options, visit https://groups.google.com/groups/opt_out.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.