[git-users] Re: Gitweb on Rackspace

2012-07-23 Thread Sridhar Pandurangaiah
The vhosts configuration was pointing to the projects folder (where all the .git 's were located) rather than the git web folder. How stupid of me! -- 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

Re: [git-users] Re: how to change message of old commit

2012-07-23 Thread Rustom Mody
On Mon, Jul 23, 2012 at 11:54 AM, Thomas Ferris Nicolaisen wrote: > > Could you point me to that 'git-bash thing'? -- Looks very useful >> > > Note that it only works for zsh (z-shell) and bash, so you'll need to run > either Linux, Mac, or Windows with Cygwin (or Git Bash). > > In the above shel

[git-users] how to git format patch without swith to that branch

2012-07-23 Thread lei yang
Hi I want to format patch from branch A, but current branch is B, is it possible to format patch without switching to B? Lei -- 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.co

Re: [git-users] how to git format patch without swith to that branch

2012-07-23 Thread Konstantin Khomoutov
On Mon, 23 Jul 2012 23:43:50 +0800 lei yang wrote: > I want to format patch from branch A, but current branch is B, is it > possible to format patch without switching to B? Yes. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post t

[git-users] Git as a teaching/grading tool?

2012-07-23 Thread ottathom
I teach web page design and Javascript programming at a public university. I want a system that will allow my students to first upload their files to individual directories on a web server where the permissions are such that only I and the student can see them. Once graded, I would like to be

Re: [git-users] Git as a teaching/grading tool?

2012-07-23 Thread Konstantin Khomoutov
On Mon, 23 Jul 2012 10:29:45 -0700 (PDT) ottathom wrote: > I teach web page design and Javascript programming at a public > university. I want a system that will allow my students to first > upload their files to individual directories on a web server where > the permissions are such that only I

Re: [git-users] Git as a teaching/grading tool?

2012-07-23 Thread Bryce Verdier
On 7/23/12 10:45 AM, Konstantin Khomoutov wrote: On Mon, 23 Jul 2012 10:29:45 -0700 (PDT) ottathom wrote: I teach web page design and Javascript programming at a public university. I want a system that will allow my students to first upload their files to individual directories on a web server

[git-users] Re: Git as a teaching/grading tool?

2012-07-23 Thread ottathom
Thanks Konstantin and Bryce, I've been looking at rsync today and think that will do exactly what I need. Thanks again, Tom. On Monday, July 23, 2012 11:29:45 AM UTC-6, ottathom wrote: > > I teach web page design and Javascript programming at a public university. > I want a system that will

[git-users] Sorry...need help installing on windows

2012-07-23 Thread Jeffery Brewer
OK, so I've read about GIT, I took the free online course over at Code School, I spent more time reading about git, read the git book on the git website...I'm eager to try it out...I go to the Git website, download the windows installation, install, find a command prompt, type "$ git config" li

[git-users] Bug? "status --porcelain" only quotes spaces in added files

2012-07-23 Thread Graham Jans
Consider this scenario: $ touch "a 1.txt" $ touch "a 2.txt" $ git add "a 1.txt" $ git status --porcelain A "a 1.txt" ?? a 2.txt Note that the added file is properly quoted to account for the space, but the unadded file is not. This makes these scenarios incredibly troublesome to parse wi

Re: [git-users] SSH keys required for SSL authentication/authorization?

2012-07-23 Thread TSU
ths for your post response, but I have some questions and comments (embedded within your post) On Saturday, July 21, 2012 6:56:50 AM UTC-7, Konstantin Khomoutov wrote: > > > > First, SSH and SSL have nothing in common except for the word [S]ecure > and the naturally following fact they secure s

[git-users] New user gets lost driving the Git Bash

2012-07-23 Thread Jeffery Brewer
Aha! Figured out that after installing on windows you don't go to a command line directly, you have to go through "Start > All Programs > Git > Git Bash" which gives you a different kind of command line. Was able to set up my configuration settings as described in "The Book". Am now at the begi

Re: [git-users] New user gets lost driving the Git Bash

2012-07-23 Thread Łukasz Siwiński
do the following: echo "alias dir =ls" if you want to go to c: drive do the following cd /c if you want to go to d: do the following cd /d next I recomend You git magic book (as the first position to read), it helped me practice & n'joy. 2012/7/24 Jeffery Brewer : > Aha! Figured out that a

Re: [git-users] New user gets lost driving the Git Bash

2012-07-23 Thread Łukasz Siwiński
Ps: after: "$ echo dir alias='ls' >> .bashrc" exit & relaunch your prompt (bach/command line) 2012/7/24 Łukasz Siwiński : > do the following: > > echo "alias dir =ls" > > > if you want to go to c: drive do the following > > cd /c > > if you want to go to d: do the following > > cd /d > > next I

Re: [git-users] New user gets lost driving the Git Bash

2012-07-23 Thread Serge Matveenko
On Tue, Jul 24, 2012 at 3:18 AM, Łukasz Siwiński wrote: > Ps: after: "$ echo dir alias='ls' >> .bashrc" exit & relaunch your > prompt (bach/command line) alias dir='ls -Alh' gives more familiar look for windows user personally I use this alias in my linux shell for over 6 years -- Serge Mat

Re: [git-users] New user gets lost driving the Git Bash

2012-07-23 Thread Jeffery Brewer
Thanks to both... how do you move up one level in the directory structure without having to type the entire path? e.g. "cd.." On Monday, July 23, 2012 4:30:14 PM UTC-7, Serge Matveenko wrote: > > On Tue, Jul 24, 2012 at 3:18 AM, Łukasz Siwiński > wrote: > > Ps: after: "$ echo dir alias='ls'

Re: [git-users] New user gets lost driving the Git Bash

2012-07-23 Thread Kfir Shay
you need a space between the command and argument "cd .." On Mon, Jul 23, 2012 at 7:36 PM, Jeffery Brewer wrote: > Thanks to both... > > how do you move up one level in the directory structure without having to > type the entire path? e.g. "cd.." > > > On Monday, July 23, 2012 4:30:14 PM UTC-7, S

Re: [git-users] Sorry...need help installing on windows

2012-07-23 Thread Daniel P. Wright
Jeffery Brewer (Mon, Jul 23, 2012 at 03:24:46PM -0700) >> > OK, so I've read about GIT, I took the free online course over at Code > School, I spent more time reading about git, read the git book on the git > website...I'm eager to try it out...I go to the Git website, download the > windows ins

Re: [git-users] Sorry...need help installing on windows

2012-07-23 Thread Daniel P. Wright
Daniel P. Wright (Tue, Jul 24, 2012 at 11:12:04AM +0900) >> > Jeffery Brewer (Mon, Jul 23, 2012 at 03:24:46PM -0700) >> > > OK, so I've read about GIT, I took the free online course over at Code > > School, I spent more time reading about git, read the git book on the git > > website...I'm eager

Re: [git-users] how to git format patch without swith to that branch

2012-07-23 Thread lei yang
how to? Lei On Tue, Jul 24, 2012 at 12:18 AM, Konstantin Khomoutov wrote: > On Mon, 23 Jul 2012 23:43:50 +0800 > lei yang wrote: > >> I want to format patch from branch A, but current branch is B, is it >> possible to format patch without switching to B? > Yes. -- You received this message be

Re: [git-users] New user gets lost driving the Git Bash

2012-07-23 Thread Łukasz Siwiński
PS: The "command like" provided with Git for Windows is something like Bash for Linux. -- 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