Re: [git-users] Re: git.for solo developer

2012-12-22 Thread Kfir Shay
>My question might seem naive but I am gust trying to
>fully understand the concept of Version control system.

http://en.wikipedia.org/wiki/Revision_control

On Sat, Dec 22, 2012 at 1:33 AM, Dimitris Papageorgiou
 wrote:
> Ok...I have quite understand what Git is an how it will help me.
>
> The question is, since Netbeans has a history feature about each file in a
> project which
> helps undo changes, what more Git has to offer than this and in general any
> VCS out here.
>
> My question might seem naive but I am gust trying to
> fully understand the concept of Version control system.
>
>
> 2012/12/21 Joe Cabezas 
>>
>> I feel really sorry about this off-topic ,but I loved this message ,thank
>> you Charles Manning.
>>
>> 
>>
>> JoeCabezas: "When my kids started programming, the 1st thing I did with
>> them was get them to sign up to #github and get into the habit of using git"
>> <3
>>
>> Original Tweet: http://twitter.com/JoeCabezas/status/282092609411878913
>>
>> Sent via TweetDeck (www.tweetdeck.com)
>>
>> --
>>
>>
>
>
> --
>
>

-- 




Re: [git-users] Re: git.for solo developer

2012-12-22 Thread Manlio Perillo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Il 22/12/2012 07:33, Dimitris Papageorgiou ha scritto:
> Ok...I have quite understand what Git is an how it will help me.
> 
> The question is, since Netbeans has a history feature about each file in
> a project which
> helps undo changes, what more Git has to offer than this and in general
> any VCS out here.
> 

That a VCS store a snapshot of your file (Mercorial) or your entire
working tree (Git) at every commit.

And of course, you can diff between different versions of a file, check
when and how some code was moved from one file to another (Git), and
check when and how any single line of a file was added (Mercurial and
Git blame command).

> My question might seem naive but I am gust trying to 
> fully understand the concept of Version control system.
> 

As I wrote: read the Git and Mercurial books.
They have all the answers you want.


Regards  Manlio
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAlDVxvgACgkQscQJ24LbaUTjewCeLUKiCX/gcKJ6pdndWW/P3INm
MxoAnjjDEEe5igYtS8GLVsfJR4BXTpKu
=3L0y
-END PGP SIGNATURE-

-- 




Re: [git-users] Re: git.for solo developer

2012-12-21 Thread Dimitris Papageorgiou
Ok...I have quite understand what Git is an how it will help me.

The question is, since Netbeans has a history feature about each file in a
project which
helps undo changes, what more Git has to offer than this and in general any
VCS out here.

My question might seem naive but I am gust trying to
fully understand the concept of Version control system.

2012/12/21 Joe Cabezas 

> I feel really sorry about this off-topic ,but I loved this message ,thank
> you Charles Manning.
>
> 
>
> JoeCabezas: "When my kids started programming, the 1st thing I did with
> them was get them to sign up to #github and get into the habit of using
> git" <3
>
> Original Tweet: http://twitter.com/JoeCabezas/status/282092609411878913
>
> Sent via TweetDeck (www.tweetdeck.com)
>
> --
>
>
>

-- 




Re: [git-users] Re: git.for solo developer

2012-12-21 Thread Joe Cabezas
I feel really sorry about this off-topic ,but I loved this message ,thank
you Charles Manning.



JoeCabezas: "When my kids started programming, the 1st thing I did with
them was get them to sign up to #github and get into the habit of using
git" <3

Original Tweet: http://twitter.com/JoeCabezas/status/282092609411878913

Sent via TweetDeck (www.tweetdeck.com)

-- 




Re: [git-users] Re: git.for solo developer

2012-12-21 Thread Charles Manning
On Thu, Dec 20, 2012 at 9:38 AM, Thomas Ferris Nicolaisen
 wrote:
> On Wednesday, December 19, 2012 9:30:24 PM UTC+1, Dimitris Papageorgiou
> wrote:
>>
>> Do you think git would be useful for a solo developer as I am right now?
>>
>> I am developing a web app alone-no other developers.
>>
>> VCS is always useful kind of aid for a developer.
>>
>> But I think Git is intended more for teams of developers that wotk on the
>> same project
>> so that they can take advantage of Git's distributed functionality.
>>
>> I am asking these things because I am complete beginner in Git and in
>> general to version control systems
>
>
> Git works awesomely for solo projects. Just git init and you're up and
> running. Here's a starter's guide: http://rogerdudler.github.com/git-guide/
>

I absolutely agree with this.

git is great for solo developers, particularly if you hook up to
github or equivalent. That way losing a disk or having equipment
stolen is not so dramatic.

Even just having the ability to compare between revisions and manage
different branches of development makes git very powerful.


When my teenage kids started programming, the first thing I did with
them was get them to sign up to github and get into the habit of using
git.

Nothing in programming is more tragic than having something work, then
make a few "benign" changes which screws everything up. git helps with
that

-- CHarles

-- 




[git-users] Re: git.for solo developer

2012-12-19 Thread Thomas Ferris Nicolaisen
On Wednesday, December 19, 2012 9:30:24 PM UTC+1, Dimitris Papageorgiou 
wrote:

> Do you think git would be useful for a solo developer as I am right now?
>
> I am developing a web app alone-no other developers.
>
> VCS is always useful kind of aid for a developer.
>
> But I think Git is intended more for teams of developers that wotk on the 
> same project
> so that they can take advantage of Git's distributed functionality.
>
> I am asking these things because I am complete beginner in Git and in 
> general to version control systems
>

Git works awesomely for solo projects. Just git init and you're up and 
running. Here's a starter's guide: http://rogerdudler.github.com/git-guide/
 

--