[git-users] Re: having trouble compile git from source

2015-04-28 Thread Oscar
I was able to complete the install after the makefile modification. Most of 
the binaries seem to work except git svn.Got the following error. I am 
using Perl 5.10.1. 

Can't load '/usr/local/lib64/perl5/auto/SVN/_Core/_Core.so' for module 
SVN::_Core: libsvn_swig_perl-1.so.0: cannot open shared object file: No 
such file or directory at /usr/lib64/perl5/DynaLoader.pm line 200.
 at /usr/local/lib64/perl5/SVN/Base.pm line 59
BEGIN failed--compilation aborted at /usr/local/lib64/perl5/SVN/Core.pm 
line 5.
Compilation failed in require at 
/rsrch2/rists/djiao/apps/git-2.3.6/share/perl5/Git/SVN/Utils.pm line 6.
BEGIN failed--compilation aborted at 
/rsrch2/rists/djiao/apps/git-2.3.6/share/perl5/Git/SVN/Utils.pm line 6.
Compilation failed in require at 
/rsrch2/rists/djiao/apps/git-2.3.6/share/perl5/Git/SVN.pm line 34.
BEGIN failed--compilation aborted at 
/rsrch2/rists/djiao/apps/git-2.3.6/share/perl5/Git/SVN.pm line 34.
Compilation failed in require at 
/rsrch2/rists/djiao/apps/git-2.3.6/libexec/git-core/git-svn line 25.
BEGIN failed--compilation aborted at 
/rsrch2/rists/djiao/apps/git-2.3.6/libexec/git-core/git-svn line 25.


On Monday, April 27, 2015 at 5:01:17 PM UTC-5, Konstantin Khomoutov wrote:

 On Monday, April 27, 2015 at 11:49:36 PM UTC+3, Oscar wrote: 
  I am trying to install git 2.3.6 on rhel6. Had trouble while it is 
 installing gui, so I decided to turn off gui install by make 
 NO_TCLTK=YesPlease. However, during the install step, it failed at git-gui 
 again. Here is the error message. How do I force it not to install gui? 
  
  
  
  make[1]: Leaving directory 
 `/rsrch2/rists/djiao/Downloads/git-2.3.6/gitk-git' 
  make -C git-gui 
 gitexecdir='/rsrch2/rists/djiao/apps/git-2.3.6/libexec/git-core' install 
 Comment out the line calling 

   make -C git-gui 

 in the top-level Makefile. 

 [...] 


-- 
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/d/optout.


Re: [git-users] Re: having trouble compile git from source

2015-04-28 Thread Oscar
Sorry, I am trying this on a Centos 6 64bit system. What kind of perl 
bindngs should I be looking for? Is this some kind of Perl module I need to 
install from CPAN?


On Tuesday, April 28, 2015 at 9:08:05 AM UTC-5, Konstantin Khomoutov wrote:

 On Tue, 28 Apr 2015 06:57:33 -0700 (PDT) 
 Oscar osca...@gmail.com javascript: wrote: 

  I was able to complete the install after the makefile modification. 
  Most of the binaries seem to work except git svn.Got the following 
  error. I am using Perl 5.10.1. 
  
  Can't load '/usr/local/lib64/perl5/auto/SVN/_Core/_Core.so' for 
  module SVN::_Core: libsvn_swig_perl-1.so.0: cannot open shared object 
  file: No such file or directory at /usr/lib64/perl5/DynaLoader.pm 
  line 200. 
 [...] 

 Do you have Perl bindings to Subversion installed? 

 The library Perl failed to locate is a SWIG-generated wrapper around 
 libsvn.  For instance, on Debian, these bindings are provided by the 
 libsvn-perl package; here's the listing of the files it contain [1] 
 (for amd64 architecture). 

 You did not tell us anything about your environment so we can only 
 guess.  In either case, the first thing to do is to see what your OS 
 has to offer to you to have these bindings installed, and then 
 verifying they're installed, and then verifying Perl looks in a correct 
 place for them.  If it doesn't, supposedly the build process should be 
 fixed further. 

 1. https://packages.debian.org/jessie/amd64/libsvn-perl/filelist 


-- 
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/d/optout.


[git-users] having trouble compile git from source

2015-04-27 Thread Oscar
I am trying to install git 2.3.6 on rhel6. Had trouble while it is 
installing gui, so I decided to turn off gui install by make 
NO_TCLTK=YesPlease. However, during the install step, it failed at git-gui 
again. Here is the error message. How do I force it not to install gui?

make[1]: Leaving directory 
`/rsrch2/rists/djiao/Downloads/git-2.3.6/gitk-git'
make -C git-gui 
gitexecdir='/rsrch2/rists/djiao/apps/git-2.3.6/libexec/git-core' install
make[1]: Entering directory 
`/rsrch2/rists/djiao/Downloads/git-2.3.6/git-gui'
INDEX lib/
  DEST /rsrch2/rists/djiao/apps/git-2.3.6/libexec/git-core
INSTALL 755 git-gui
INSTALL 755 git-gui--askpass
LINKgit-citool - git-gui
  DEST /rsrch2/rists/djiao/apps/git-2.3.6/share/git-gui/lib
INSTALL 644 tclIndex
install: cannot stat `lib/tclIndex': No such file or directory
make[1]: *** [install] Error 1
make[1]: Leaving directory `/rsrch2/rists/djiao/Downloads/git-2.3.6/git-gui'
make: *** [install] Error 2

-- 
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/d/optout.


Re: [git-users] URL return error doing git pull

2013-07-12 Thread Oscar
I did git pull origin master as you suggested and got this error:

error: The requested URL returned error: 403
fatal: Couldn't find remote ref master

On Friday, July 12, 2013 1:17:40 AM UTC-5, William Seiti Mizuta wrote:


 On Fri, Jul 12, 2013 at 12:25 AM, Oscar osca...@gmail.com 
 javascript:wrote:

  Please
 name which branch you want to merge on the command line and
 try again (e.g. 'git pull repository refspec').


 Following what git has returned, you need to tell what is the name of the 
 repository and the branch that you want to bring. The default repository 
 name is origin and if you want to update the master branch from your 
 repository, then you need to use the following command: git pull origin 
 master.


 William Seiti Mizuta
 @williammizuta
 Caelum | Ensino e Inovação
 www.caelum.com.br
  

-- 
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] URL return error doing git pull

2013-07-11 Thread Oscar
I got the following error doing git pull. How do I fix it?

error: The requested URL returned error: 403
error: The requested URL returned error: 403
error: The requested URL returned error: 403
You asked me to pull without telling me which branch you
want to merge with, and 'branch.master.merge' in
your configuration file does not tell me either.  Please
name which branch you want to merge on the command line and
try again (e.g. 'git pull repository refspec').
See git-pull(1) for details on the refspec.

If you often merge with the same branch, you may want to
configure the following variables in your configuration
file:

branch.master.remote = nickname
branch.master.merge = remote-ref
remote.nickname.url = url
remote.nickname.fetch = refspec

See git-config(1) for details.

-- 
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.