[git-users] Re: Using Git in a web development environment (specifically with Coda 2 and a web server)

2012-06-05 Thread punkymunky
Have you looked at tower(http://www.git-tower.com/) and 
beanstalk(http://beanstalkapp.com/)

Tower is a really slick GUI and integrates with Beanstalk, the hosted repo.
As a designer/dev, it allowed me to easily setup repos and automated 
deployments to my remote test server.
They do cost. But having limited experience with(and patience for) command 
lines and server configs, it's worth it.




On Friday, May 25, 2012 5:08:50 PM UTC-7, Heronymo Allen wrote:
>
> Hi all,
>
> I just purchased Coda 2 yesterday, and I installed Git for version 
> control. I also installed the GitHub GUI for Git.
> I've never used a version control mechanism and I've always done it 
> manually. But I want to learn how to properly set up Git for a web dev 
> environment.
>
> I've searched around and read some documentation and tutorials, but it 
> doesn't seem like I've found my answers. Also, everything I found was a bit 
> overwhelming!
>
> Coda 2 can see Git just fine and the version control features are now 
> active. 
> But how do I use it with my web server? Do I need to install Git onto the 
> server?
> Coda can track changes locally, but I don't know if it's working remotely. 
> I don't know if Coda can compare the local files to the server files.
>
> Furthermore, and perhaps this is more of a Coda issue, I would like to 
> know if it's possible to have a setup where I have a testing server (eg: 
> test.domain.com) and a live server (domain.com).
> I preview and develop the website on the test subdomain, and then push it 
> to the main domain when it's ready to go.
> Is this something that Git can help me with? Coda only allows you to 
> define one server. That's one thing I miss from Dreamweaver, the ability to 
> define multiple servers for testing and live deployment.
>
> If you need more info please don't hesitate to ask.
>
> Any help would be totally appreciated. Thanks to any and all who reply!
>

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/efjBO2Ij9PUJ.
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] Get a project with .git repository

2012-06-05 Thread Konstantin Khomoutov
On Tue, 5 Jun 2012 17:55:48 +0200
Thomas TREHOU  wrote:

> Can I get my all project just with my .git directory. For example, I
> would like to communicate with someone, but he doesn't have an access
> to my server, can I send him only the .git directory in order to have
> my complete project ?
Look at the `git bundle` command--it was specifically designed for
transferring Git repositories (or parts of them) using sneakernet.

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



[git-users] Get a project with .git repository

2012-06-05 Thread Thomas TREHOU
Hello World,

I have just a simple question.

Can I get my all project just with my .git directory. For example, I would
like to communicate with someone, but he doesn't have an access to my
server, can I send him only the .git directory in order to have my complete
project ?

Thank a lot

TREHOU Thomas
Elève Ingénieur à Télécom Lille 1
5ème année

☎ +33 (0)6 80 03 89 13
http://thomas.trehou.netcv.com

-- 
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: Install git on Red Hat

2012-06-05 Thread Danilo Santos
No words to thank the help.
Thanks it is working, now I'll redo it in another computer.
but anyway thanks for the help.

2012/6/5 Thomas Ferris Nicolaisen 

> I might be shooting in the dark here, but found this here:
> http://stackoverflow.com/questions/171506/make-and-build-utilities-on-centos-rhel
>
> Can you try either of these first?
>
> yum groupinstall "Development Tools"
>
> yum install gcc gcc-c++ kernel-devel
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Git for human beings" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/git-users/-/wXPcPE7CB5gJ.
> 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.
>



-- 
Danilo

-- 
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: Install git on Red Hat

2012-06-05 Thread Thomas Ferris Nicolaisen
I might be shooting in the dark here, but found this 
here: 
http://stackoverflow.com/questions/171506/make-and-build-utilities-on-centos-rhel

Can you try either of these first?

yum groupinstall "Development Tools"

yum install gcc gcc-c++ kernel-devel

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/wXPcPE7CB5gJ.
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: Install git on Red Hat

2012-06-05 Thread Danilo Santos
the make is installed.
GNU Make 3.81.
I think another problem is, still can not find, have any other idea?

2012/6/5 Thomas Ferris Nicolaisen 

> It appears "make" is missing on your system. Perhaps you can first install
> it like this?
>
> yum install make
>
> --
> You received this message because you are subscribed to the Google Groups
> "Git for human beings" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/git-users/-/vVePTKiiHbIJ.
> 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.
>



-- 
Danilo

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



[git-users] Re: Install git on Red Hat

2012-06-05 Thread Thomas Ferris Nicolaisen
It appears "make" is missing on your system. Perhaps you can first install 
it like this?

yum install make

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/vVePTKiiHbIJ.
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.



[git-users] Re: Install git on Red Hat

2012-06-05 Thread Danilo Santos
Hello, Ferris Nicolaisen,

This was the first command I tried, without success. He was already out of 
date with RHN correct, but the command '*yum install git-core*' did not 
work. after registering the RHN, I updated the 'yum'. 

I tried to install git-core according to the tutorial you sent 
http://git-scm.com/book/en/Getting-Started-Installing-Git 

But when I got this line "*make prefix=/usr/local all*" gave the following 
error 

"CC daemon.o 
/bin/sh: cc: command not found make: ** 
[daemon.o] Error 127 " 

Thanks for the help

Em segunda-feira, 4 de junho de 2012 17h42min59s UTC-3, Thomas Ferris 
Nicolaisen escreveu:
>
> Hi, 
>
> As far as I know, you can install software on Red Hat in the shape of 
> RPM's. And the easiesst way to get RPM's and install them is with Red Hat's 
> software management tool called "yum". It should be as easy as opening some 
> terminal and typing:
>
> yum install git-core
>
> According to the RH version 
> table, 
> 2.6.18 is Red Hat Enterprise Linux 5 (*Tikanga*), and Red Hat have been 
> using yum since this version I think (I don't use Red Hat myself though).
>
> More info about yum here: https://access.redhat.com/knowledge/node/9934
>
> More about installing git in general here: 
> http://git-scm.com/book/en/Getting-Started-Installing-Git
>
> And if for some reason it will not work with yum, you could try this 
> approach: 
> http://www.westwideweb.com/wp/2009/11/09/installing-git-on-red-hat-enterprise-linux-rhel5/
>
> On Monday, June 4, 2012 8:02:20 PM UTC+2, Danilo Santos wrote:
>>
>> Hello, I have to install git on Red Hat Linux 2.6.18-8.el5, but I'm not 
>> getting. Can anyone help me please?
>>
>
Em segunda-feira, 4 de junho de 2012 17h42min59s UTC-3, Thomas Ferris 
Nicolaisen escreveu:
>
> Hi, 
>
> As far as I know, you can install software on Red Hat in the shape of 
> RPM's. And the easiesst way to get RPM's and install them is with Red Hat's 
> software management tool called "yum". It should be as easy as opening some 
> terminal and typing:
>
> yum install git-core
>
> According to the RH version 
> table, 
> 2.6.18 is Red Hat Enterprise Linux 5 (*Tikanga*), and Red Hat have been 
> using yum since this version I think (I don't use Red Hat myself though).
>
> More info about yum here: https://access.redhat.com/knowledge/node/9934
>
> More about installing git in general here: 
> http://git-scm.com/book/en/Getting-Started-Installing-Git
>
> And if for some reason it will not work with yum, you could try this 
> approach: 
> http://www.westwideweb.com/wp/2009/11/09/installing-git-on-red-hat-enterprise-linux-rhel5/
>
> On Monday, June 4, 2012 8:02:20 PM UTC+2, Danilo Santos wrote:
>>
>> Hello, I have to install git on Red Hat Linux 2.6.18-8.el5, but I'm not 
>> getting. Can anyone help me please?
>>
>

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/tup9XohrTaYJ.
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.



[git-users] Getting the latest tag

2012-06-05 Thread Peter van der Does
I found two ways to get the latest tag but what is difference, if there is 
a difference?

Solution 1:
git describe --tags $(git rev-list --tags --max-count=1)

Solution 2:
git for-each-ref refs/tags --sort=-authordate --format='%(refname)' 
--count=1 | sed 's/^refs\/tags\///'

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/RDuvi8r0Gk4J.
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.



[git-users] Re: Install git on Red Hat

2012-06-05 Thread Markus Falb
On Jun 4, 10:42 pm, Thomas Ferris Nicolaisen  wrote:

> As far as I know, you can install software on Red Hat in the shape of
> RPM's. And the easiesst way to get RPM's and install them is with Red Hat's
> software management tool called "yum". It should be as easy as opening some
> terminal and typing:
>
> yum install git-core
...
> More about installing git in general 
> here:http://git-scm.com/book/en/Getting-Started-Installing-Git

rhel5 has no git rpms but it is in epel
http://fedoraproject.org/wiki/EPEL

after you configured your yum for EPEL you do
$ yum install git

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