[git-users] Need help in installing GIT in IBM-AIX Unix Server

2012-12-30 Thread gaugeta
Hello Guys,
 
I want to install GIT in IBM-AIX UNIX Server.
When I visited the GIT website I could find the installation packages for 
only Windows,Linux and Mac.
Where can I get the installation package for AIX Unix Sever and what's the 
installation procedure for the same.
 
Regards,
Gautam.

-- 




Re: [git-users] Need help in installing GIT in IBM-AIX Unix Server

2012-12-30 Thread gaugeta
@Shrinivasan T : Thanks for replying.
What does compliling from source mean.
I'm very new to GIT.
Can you please elaborate.
 

-- 




[git-users] Installing Dependent Libraries for Git

2012-12-30 Thread gaugeta
Hello Guys,
 
For installing GIT the website says that I need to have the foll libraries 
: curl, zlib, openssl, expat, and libiconv.
 
And says that I can install using the yum or the apt-get command.
 
I work on an IBM-AIX Unix server and both the yum and apt-get commands are 
not present.
 
How can i install these dependencies for Git.
 
Regards,
Gautam.

-- 




Re: [git-users] Need help in installing GIT in IBM-AIX Unix Server

2012-12-30 Thread gaugeta
Thnaks a lot.
Will try these options ang get back if I face any issues.

-- 




[git-users] Issue in checking out repo in GIT in eclipse

2013-01-07 Thread gaugeta
Hello Guys,
 

**
  
I have a git repo in my Ubuntu server set up.

I want to checkout that repo on my windows machine into eclipse.

I have installed EGIT plugin my eclipse.

I tried checking importing the files from using the plugin by choosing the 
URI option in eclipse and got an Unknown Host Exception.

These are the setting i gave:

1) URI  : user@hostname:/path/to/repo
2) Host : hostname
3) Repository Path : /path/to/repo
4) Protocol :SSH
5) Port : 22
6) user : username
7) pwd : password

Is there any place that in need to enter the ip address. The server is on 
my lan and I can access and work on my repo using putty. What info is 
missing here.
 

-- 




[git-users] What is the best way to use GIT for versioning Java Website

2013-01-27 Thread gaugeta
I have a git repo installed in my unix for version tracking our JEE website.
I have currently run into issues not in the usage of git but the way in 
which I am suppose to use it which is explained below.
 
I work in a team of 3 developers which contribute to the website 
development.
 

Initially when I installed Git in our server I directly created a repo of 
our webapps directory which contains the actual work files and ran into the 
foll problems.

1)While committing the changes into the repo one of us would genrally do a git 
add . and commit it to the repository which would commit not only the files 
the commiter changed but would also commit the changes of other developers.
When we faced this issue we decided that we needed to create separate 
non-bare repos for each one of us in the same server in different 
directories which would house the entire code.The basic work stucture we 
are following is hown below:
 
https://lh4.googleusercontent.com/-qKXGpVl_8Uc/UQTiLE0LvgI/AAY/Q-H-TU0WtKA/s1600/git_arch.png
 
 

As shown above in the image we have created a bare repo which would have 
the website contents pushed by the webapps which in the image is the Work 
Directory.

The basic workflow here is:

1) Create n number of non-bare repos for each and every developer.

2) Get the entire website work files from pulling from that bare repo

3) After making changes to our own repo push to the bare repo

4) The bare repo being configured with a post-receive hook would actually 
update the Work Directory.

This setup is working fine but we are facing a lot of issues as shown below:

1) Each developer having his own contetnts in a separate directory is not 
able to test the code before pushing it to the bare repo which would update 
the Work Directory- Coz of these steps even for say one jsp file change I 
end up doing 20 commits until it starts working properly without bugs since 
we have tomcat pointing to only the original work directory.

This has become the most troubleseme issue here.

How can we improve this scenario where using GIT in out prject seems 
benefitial.

Can anyone suggest any ways for improving the same.

--