On 2012-09-25 17:22, Bernd wrote:

I highly recommend using the easygit wrapper to make life easier,
especially when you come from SVN because git will be very confusing


Thanks for the tip, but Git is *not* difficult to use. To cover the average developer workflow, you need like 3-4 commands max. If you can't remember 4 commands, then you have bigger issues than git.

If all else fails, then remember one of these:

    git help
    git help <command>

Git has excellent help with lots and lots of example commands to learn from, and ASCII art to help visualize what it does. If you still have problems, simply use 'git alias' and setup SVN-like commands for git. For example:

Used to using 'svn up'? No problems, do the same in git.

   git up        --> can maybe execute:  git pull origin
or
   git co <url>  --> can maybe execute:  git clone <url>


There are some very handy aliases created by many. Use Google to find them.


Regards,
  - Graeme -

_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to