[git-users] When I launch Git-1.8.1.2-preview20130201.exe on my WinXP, I get the error

2013-04-15 Thread Sergey
When I launch Git-1.8.1.2-preview20130201.exe on my WinXP SP3, I get the 
error:
---
Error
---
Invalid floating point operation.
---
ОК   
---

On the other Win7 machine everything is working.
Is there zip-installation of GIT for windows?
How to install GIT for me?

-- 
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] When I launch Git-1.8.1.2-preview20130201.exe on my WinXP, I get the error

2013-04-15 Thread Konstantin Khomoutov
On Mon, 15 Apr 2013 03:13:47 -0700 (PDT)
Sergey sh0...@gmail.com wrote:

 When I launch Git-1.8.1.2-preview20130201.exe on my WinXP SP3, I get
 the error:
 ---
 Error
 ---
 Invalid floating point operation.
 ---
 ОК   
 ---
 
 On the other Win7 machine everything is working.

Are you sure everything is OK with your system?
I've installed that same installer in WinXP SP3 (32-bit, pro, RU)
without any problems.

Try temporarily disabling any antivirus software which might be running.

I would check the hardware as well.  First look at HDD (start with
inspecting the system event log, as Windows starts to silently put there
error messages when it encounters I/O errors on the HDD).
You could try to verify the integrity of the file just in case.
The MD5 sum of my copy is: eefc05a7ff11a84d350d561a63014a47.
If you have a different hash sum, this is a clear sign of somethng
low-level gone wrong.

Running memtest86+ is also desired.

 Is there zip-installation of GIT for windows?

No.

 How to install GIT for me?

If all of the above fails, zip the %ProgramFiles%\Git directory on your
Windows 7 machine and unzip it to the same place on your Windows XP box.
Then append the string %ProgramFiles%\Git\Cmd to the contents of the
PATH environment variable.

-- 
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] GitHub: checkout data to origin, adding data to origin without merge

2013-04-15 Thread gocrowdpromo


 have a remote repository and a local one. The local Git repository I also 
use in StarTeam.

My task is to take files from Git origin, after check them out on StarTeam, 
and then add changes to Git origin. But, I'm not allowed to do any merge. 
So I can't use git pull. The stupid way is to clone files each time from 
origin to master then do what I want to do in StarTeam, and then add files 
to origin through gitHub. I am not sure if the last step is correct, 
because I don't want to do any merge wherever I am.

So I want to know how to deal with it quickly:

   1. Check out my master branch to origin one
   2. Delete all untracked files from master,
   3. After doing some changes in StarTeam, add and commit on the master 
   branch all the changes and then add it to the origin branch, but without 
   doing any merge on the origin side.

-- 
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] GitHub: checkout data to origin, adding data to origin without merge

2013-04-15 Thread gocrowdpromo


I have a remote repository and a local one. The local Git repository I also 
use in StarTeam.

My task is to take files from Git origin, after check them out on StarTeam, 
and then add changes to Git origin. But, I'm not allowed to do any merge. 
So I can't use git pull. The stupid way is to clone files each time from 
origin to master then do what I want to do in StarTeam, and then add files 
to origin through gitHub. I am not sure if the last step is correct, 
because I don't want to do any merge wherever I am.

So I want to know how to deal with it quickly:

   1. Check out my master branch to origin one
   2. Delete all untracked files from master,
   3. After doing some changes in StarTeam, add and commit on the master 
   branch all the changes and then add it to the origin branch, but without 
   doing any merge on the origin side.

-- 
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 on windows 7 - Two user accounts

2013-04-15 Thread Konstantin Khomoutov
On Fri, 12 Apr 2013 18:32:23 -0700 (PDT)
sunnytrader sanjay...@gmail.com wrote:

 I started with GIT last week and am already using it for my company
 work . There is a repo hosted on BitBucket and all the developers are
 using it including myself.
  
 I now wanted to setup another repo for myself but i want to be
 absolutely certain that it doesnt not get mixed up with my office
 work. The starting point i though was to ceate another windows user
 and have the repo in the mydocuments area which is account specific. 
  
 What else do i need to do to enable sure shot seperation ? Is it
 possible to have two installs o GIT and should i do it or there is
 another way? 

Having another system account might provide some benefits, but they are,
in my opinion, mostly imaginary.  For instance, as Thomas noted, having
another system account will give your another set of global settings,
and user's name and e-mail are usually defined on this level.  But just
as easily you could mess with these settings in your another system
account and set them in a wrong way.

So my take on this issue would be to instead write a self-controlling
helper shell scipt which would simply print certain configuration
information regarding valuable Git settings, and then create a Git
alias to call that script.

For instance, the script (let's pretent it's C:\devel\git-info.sh):

#!/bin/sh
git config --get user.name
git config --get user.email
basename $(pwd)
git remote -v

(the shebang line is not needed) and the alias to use it:

C:\ git add --global alias.info !C:\\devel\\git-info.sh

Then you would just develop a habit of running `git info` after
`cd`-ingo into the work tree of a repository and check if what you're
seeing matches what you intend to work on.

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