Re: [git-users] How to add my local repository files to a server repository?

2013-09-15 Thread Stephan Nikolaus
No parameters, just the adress and path of remote server.
Must there be some more parameter(s)?

Regards,
Stephan


2013/9/15 William Seiti Mizuta william.miz...@gmail.com

 When you executed the command: git remote add, what were the parameters
 that you used?


 William Seiti Mizuta
 @williammizuta
 Caelum | Ensino e Inovação
 www.caelum.com.br




-- 
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] How to add my local repository files to a server repository?

2013-09-15 Thread William Seiti Mizuta
If you have used this command: git remote add myserver user@myserver
:/var/www/server_git, then your remote repository is aliased myserver. So,
for the reset command, you need to tell that you are using myserver: git
reset --hard myserver/master.

You can check this by listing the remote branches: git branch -r


William Seiti Mizuta
@williammizuta
Caelum | Ensino e Inovação
www.caelum.com.br


On Sun, Sep 15, 2013 at 3:49 AM, Stephan Nikolaus 
stephan.nikol...@googlemail.com wrote:

 No parameters, just the adress and path of remote server.
 Must there be some more parameter(s)?

 Regards,
 Stephan


 2013/9/15 William Seiti Mizuta william.miz...@gmail.com

 When you executed the command: git remote add, what were the parameters
 that you used?


 William Seiti Mizuta
 @williammizuta
 Caelum | Ensino e Inovação
 www.caelum.com.br


  --
 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] How to add my local repository files to a server repository?

2013-09-15 Thread Stephan Nikolaus
wow, it works! Now i'm able to convert all my cvs repositorys into git.
Thank you very much.
Greetings from Hanover,
Stephan


2013/9/15 William Seiti Mizuta william.miz...@gmail.com

 If you have used this command: git remote add myserver user@myserver
 :/var/www/server_git, then your remote repository is aliased myserver.
 So, for the reset command, you need to tell that you are using myserver:
 git reset --hard myserver/master.

 You can check this by listing the remote branches: git branch -r


 William Seiti Mizuta
 @williammizuta
 Caelum | Ensino e Inovação
 www.caelum.com.br


 On Sun, Sep 15, 2013 at 3:49 AM, Stephan Nikolaus 
 stephan.nikol...@googlemail.com wrote:

 No parameters, just the adress and path of remote server.
 Must there be some more parameter(s)?

 Regards,
 Stephan


 2013/9/15 William Seiti Mizuta william.miz...@gmail.com

 When you executed the command: git remote add, what were the parameters
 that you used?


 William Seiti Mizuta
 @williammizuta
 Caelum | Ensino e Inovação
 www.caelum.com.br


  --
 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 a topic in the
 Google Groups Git for human beings group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/git-users/tX2HCxXiNds/unsubscribe.
 To unsubscribe from this group and all its topics, 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] SVN Git

2013-09-15 Thread Thomas Ferris Nicolaisen
On Saturday, September 14, 2013 6:05:26 PM UTC+2, Magnus Therning wrote:

 If that doesn't help you out then come back here with the SVN folder 
 structure so it becomes easier to help you out. 


Also please provide us with the exact command/path which is working for 
SVN, and which one is failing for git svn (anonymize server hosts if you 
wish).

-- 
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] Are there overlay icons in Git?

2013-09-15 Thread Konstantin Khomoutov
On Sat, 14 Sep 2013 14:03:38 -0700 (PDT)
Anton Barycheuski anton.barycheu...@gmail.com wrote:

 I use Git 1.8.3 (git-scm.com) on Windows 7. Are there any variants
 for showing git overlay icons in Windows Explorer like TortoiseSvn?

No it's impossible and supposedly will never be: TortoiseFoos use deep
Windows Explorer integration which spawns a per-user copy of a special
caching program (which runs in the background and can only be seen via
Task Manager or a similar tool) to make cost of supporting these
overlays in terms of performance acceptable (which comes at a price of
sometimes being slightly out of sync with the reality).  Git for Windows
itself is just a set of standard Git tools which do not know anything
about Windows Explorer.  This situation is most probably unlikely to
change (and for good, IMO).

On the other hand, good GUI Git front-ends exist, with various levels
of integration into Windows Explorer:

* Folks behind Git for Windows develop their own (cross-platform)
  front-end called Git Cheetah which is bundled with Git for Windows.
  It does integrate into Windows Explorer.  Not sure about whether it
  supports overlay icons.

* There exists TortoiseGit front-end which quite resembles TortoiseSvn
  when it comes to visual appearance and workflow, overlay icons
  included.

* Git Extensions [1] is my personal favorite in this category.
  It does not integrate with Windows Explorer (or may be I opted out of
  it -- I can't remember) but it's a quite feature complete front end
  with one crucial property compared to TortoiseGit: it's *not* trying
  to force you to assume a Subversion-like mindset when working.
  Git is really different from Subversion and attempts to make
  Subversion converts to feel themselves in a familiar environment are
  deceiving.

1. http://code.google.com/p/gitextensions/

-- 
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] Are there overlay icons in Git?

2013-09-15 Thread Konstantin Khomoutov
On Sat, 14 Sep 2013 14:03:38 -0700 (PDT)
Anton Barycheuski anton.barycheu...@gmail.com wrote:

 I use Git 1.8.3 (git-scm.com) on Windows 7. Are there any variants
 for showing git overlay icons in Windows Explorer like TortoiseSvn?

...a quick followup regarding Git Extensions: it offers several
packages for download, of which one includes the latest Git for Windows
package and another one missing it.  So you can have a side-by-side
installation of stock Git for Windows and this front-end.

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