[git-users] how to create a new empty branch

2013-03-01 Thread lei yang
Hi experts, how to create a new empty branch, any command? Thanks Lei -- 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

Re: [git-users] how to create a new empty branch

2013-03-01 Thread Martin Møller Skarbiniks Pedersen
On 1 March 2013 10:24, lei yang yanglei.f...@gmail.com wrote: Hi experts, how to create a new empty branch, any command? Thanks Lei What do you mean by empty branch ? /Martin -- You received this message because you are subscribed to the Google Groups Git for human beings group. To

Re: [git-users] how to create a new empty branch

2013-03-01 Thread Serge Matveenko
On Fri, Mar 1, 2013 at 1:24 PM, lei yang yanglei.f...@gmail.com wrote: how to create a new empty branch, any command? from http://www.kernel.org/pub//software/scm/git/docs/git-checkout.html : git checkout --orphan new_branch Create a new orphan branch, named new_branch, started from

Re: [git-users] how to create a new empty branch

2013-03-01 Thread Konstantin Khomoutov
On Fri, 1 Mar 2013 17:24:18 +0800 lei yang yanglei.f...@gmail.com wrote: how to create a new empty branch, any command? $ git checkout --orphan newbranch [starting_point] $ git rm -rfq --cached -- You received this message because you are subscribed to the Google Groups Git for human beings

[git-users] Problem cloning a GIT repo, Out of memory, windows XP (32-bit)

2013-03-01 Thread Igor Kazarnovskiy
Morning :) I have a problem cloning a large GIT repository on a windows XP (32-bit) machine. The output looks as follows: $ git clone ssh://user@server/.../git/repo/myrepo mylocalrepo Cloning into 'mylocalrepo'... remote: Counting objects: 384454, done. remote: Compressing objects: 100%

Re: [git-users] Problem cloning a GIT repo, Out of memory, windows XP (32-bit)

2013-03-01 Thread John McKown
Have you tried any of the git config options? http://linux.die.net/man/1/git-config You might try setting one or more of the following with a git config --global command. No guarantees that any of them will help. Just a wild guess on my part. quote core.packedGitWindowSize Number of bytes of

[git-users] GIT blocked by firewall - and I am not able to find all necessary ports

2013-03-01 Thread kkgp20
Hello, I would like to download the FreeSWITCH code which is hosted by GIT (git://git.freeswitch.org/freeswitch.git - I am using the Git 1.8.1.2 Bash for Windows), but in my network many ports are blocked so I received the unable to connect error. I have found that GIT is using the 9148 port,

Re: [git-users] GIT blocked by firewall - and I am not able to find all necessary ports

2013-03-01 Thread Martin Møller Skarbiniks Pedersen
On 1 March 2013 15:11, kkg...@gmail.com wrote: Hello, I would like to download the FreeSWITCH code which is hosted by GIT (git://git.freeswitch.org/freeswitch.git - I am using the Git 1.8.1.2 Bash for Windows), but in my network many ports are blocked so I received the unable to connect

Re: [git-users] Problem cloning a GIT repo, Out of memory, windows XP (32-bit)

2013-03-01 Thread Igor Kazarnovskiy
Yes. I've added following entry to my .gitconfig: [pack] packSizeLimit = 20m What is strange is that if i run git config --list i get following ouput: core.symlinks=false core.autocrlf=true color.diff=auto color.status=auto color.branch=auto color.interactive=true pack.packsizelimit=2g

Re: [git-users] Problem cloning a GIT repo, Out of memory, windows XP (32-bit)

2013-03-01 Thread Dale R. Worley
From: Igor Kazarnovskiy igor.kazarnovs...@googlemail.com Yes. I've added following entry to my .gitconfig: [pack] packSizeLimit = 20m What is strange is that if i run git config --list i get following ouput: core.symlinks=false core.autocrlf=true color.diff=auto

Re: [git-users] GIT blocked by firewall - and I am not able to find all necessary ports

2013-03-01 Thread Martin Møller Skarbiniks Pedersen
On 1 March 2013 15:11, kkg...@gmail.com wrote: Hello, I would like to download the FreeSWITCH code which is hosted by GIT (git://git.freeswitch.org/freeswitch.git - I am using the Git 1.8.1.2 Bash for Windows), but in my network many ports are blocked so I received the unable to connect

[git-users] Re: git: Command not found.

2013-03-01 Thread banacan99
Thanks everyone for replying. I tried entering this in a Terminal window: export PATH=/usr/local/git/bin:$PATH but I get this: export: Command not found. So I tried this: echo $PATH Here is what was returned:

[git-users] Re: git: Command not found.

2013-03-01 Thread banacan99
I suppose I should say that I'm running OSX 10.8.2 on an iMac. -- 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

Re: [git-users] Re: git: Command not found.

2013-03-01 Thread Dale R. Worley
From: banaca...@gmail.com I suppose I should say that I'm running OSX 10.8.2 on an iMac. The command ps $$ will show something like PID TTY STAT TIME COMMAND 12596 pts/1Ss 0:00 /bin/bash --noediting -i The question is what is showing under COMMAND. In my

Re: [git-users] Re: git: Command not found.

2013-03-01 Thread banacan99
Ryan, I ran it, here is the output: bash bash-3.2$ export PATH=/usr/local/git/bin:$PATH bash-3.2$ git --version git version 1.7.9.1 bash-3.2$ exit Unfortunately I still receive git: Command not found when I enter git status at the prompt in ANY of my git enabled directories. Also, I did an

Re: [git-users] Re: git: Command not found.

2013-03-01 Thread banacan99
Dale, Here is what is returned: ps $$ PID TT STAT TIME COMMAND 28206 s000 S 0:00.02 -tcsh I confess I don't know what this means. -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from this group and stop

Re: [git-users] Re: git: Command not found.

2013-03-01 Thread Ryan Hodson
PID TT STAT TIME COMMAND 28206 s000 S 0:00.02 -tcsh I confess I don't know what this means. That means you're using tcsh as your shell, which doesn't use the `export` command. Try the following: set PATH = ($PATH /usr/local/git/bin) That should (hopefully) solve your

Re: [git-users] Re: git: Command not found.

2013-03-01 Thread banacan99
Ryan, Thanks for your help. Here is the output: echo $PATH /usr/local/mysql/bin:/usr/local/mysql/bin:/usr/local/mysql/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin /usr/local/git/bin As you can see, git is now in the PATH - BUT - it is preceded by a space not a colon so when I type git

Re: [git-users] Re: git: Command not found.

2013-03-01 Thread Ryan Hodson
I'm assuming the problem is the space/colon? Agh. Yea, my bad. Use a colon, not a space. *That* should solve your problem. -- 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

[git-users] Re: git: Command not found.

2013-03-01 Thread banacan99
Ryan et al, OK, after running Ryan's set PATH statement it still didn't work. I exited Terminal, re-opened and tried again - SUCCESS - woohoo! Thanks for all of you help! -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe

[git-users] fetching a branch I rebased - how to update the local branch on machine 2.

2013-03-01 Thread Philip Oakley
I have two PCs, one running Windows Msysgit Git for Windows, which I'm familiar with, and the other a laptop with Ubuntu (still not familiar). I have a repo hosted on GitHub. I rebased a branch on my windows PC and pushed it to Github with a forced update. I've now fetched the branch to my

Re: [git-users] fetching a branch I rebased - how to update the local branch on machine 2.

2013-03-01 Thread Philip Oakley
From: Philip Oakley philipoak...@iee.org Sent: Friday, March 01, 2013 10:36 PM I have two PCs, one running Windows Msysgit Git for Windows, which I'm familiar with, and the other a laptop with Ubuntu (still not familiar). I have a repo hosted on GitHub. I rebased a branch on my windows PC