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

2013-02-27 Thread Evgeny Goldin
I'd try downloading and installing Mac OS Git client -
http://git-scm.com/download/mac.
Or run sudo find / -name git to see where it's located if you believe it
is installed already.
On my Mac which git tells me /usr/local/git/bin/git.


On Wed, Feb 27, 2013 at 9:51 PM, John McKown
john.archie.mck...@gmail.comwrote:

 The command git is not in any of the directories in the $PATH
 environment variable. I don't use MacOSX much at all, so I don't know
 how to set up this for a Terminal session. This might help:
 http://www.tech-recipes.com/rx/2621/os_x_change_path_environment_variable/
 I think you can use Finder to determine which subdirectory contains
 the git command.

 On Wed, Feb 27, 2013 at 2:42 PM,  banaca...@gmail.com wrote:
  I have a clone of a local repository on my computer, and when I try to
 issue
  any git command from Terminal I get this git: Command not found..  That
  seems to indicate that git is not in the directory containing the clone,
 but
  it is.  In fact I have used GITX (the graphical interface for Mac) to
 make
  10 commits to this clone, so I know it exists.  Plus, I can see the .git
  directory within the directory containing the clone.  And I have an
 exclude
  file in .git  info to exclude tracking images, etc.
 
  Can someone explain why I can't access this clone through Terminal?
 
  --
  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.
 
 



 --
 This is a test of the Emergency Broadcast System. If this had been an
 actual emergency, do you really think we'd stick around to tell you?

 Maranatha! 
 John McKown

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




-- 
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] Recorded talk on using git-svn

2011-09-11 Thread Evgeny Goldin
Thanks, Thomas!


On Mon, Sep 12, 2011 at 01:12, Thomas Ferris Nicolaisen tfn...@gmail.comwrote:

 Hi,

 I just did a talk at JavaZone this week about using git-svn, and the
 recording is now online:

 http://vimeo.com/28762003

 The demo features normal use of git-svn, plus setup of a git-svn mirror,
 using Jenkins to automatically sync the git mirror, and then putting the
 mirror on Github.

 Maybe some here will find it useful.

 --
 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/-/9E5mrASOWLQJ.
 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.


-- 
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] Git Master Reference

2011-01-08 Thread Evgeny Goldin
Hi,
As I was reading Git books, manuals and tutorials I was putting all links, 
code examples, diagrams and explanations to one Wiki page. Eventually it 
became a Master Reference of everything about Git: 
evgeny-goldin.com/wiki/Git.
Hope you find it useful and if you don't mind than adding a vote on 
DZonehttp://www.dzone.com/links/git_master_reference.htmlwould be very nice 
as well.

-- 
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-us...@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: Misnamed remote branch

2010-09-16 Thread Evgeny Goldin
Thank you, Konstantin.
Here's a brief explanation to git push [remote] :[branch] syntax:
http://progit.org/book/ch3-5.html = Deleting Remote Branches

On Sep 15, 11:49 pm, Konstantin Khomoutov khomou...@gmail.com wrote:
 On Sep 15, 5:41 pm, Roddie Grant gitl...@myword.co.uk wrote:

  With a moment's inattention I typed
  git push test databaseTests:refs/remotes/dev/databaseTsts
  instead of
  git push test databaseTests:refs/remotes/dev/databaseTests
  and now in the test repos the listing from git br -a includes
  remotes/dev/databaseTsts

  git br -d remotes/dev/databaseTsts
  results in
  error: branch 'remotes/dev/databaseTsts' not found.

  How do I delete the mis-named branch?

 git-branch only operates on local branches and any tinkering with
 remotes goes via git-push.
 To rename a wrongly-named remote branch delete it and push under a
 correct name; deleting is done by pushing an empty refspect (see the
 git-push manual).
 Hence do this:
 $ git push test :databaseTsts databaseTests
 this will a) delete a remote object named databaseTsts; b) push a
 local object databaseTests to the same named remote object.

 Note that you don't really understand why do you need that refs/
 remotes/dev/ prefix -- git usually does just the right thing when you
 supply short names to git-push.

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