Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm about to host a 3hr Git workshop and from my experiences so far it's quite hard to cover all topics in full depth. In addition it is often very helpful to point programmers to small productivity improvements for their day-to-day work. E.g. using git stash is quite often sth. which keeps people interested even if the workshop didn't answer all their questions.

So what are the advices you'd give git newbees to keep them interested?

Cheers

share|improve this question
I like this tutorial: gitimmersion.com – Rafał Rawicki Apr 7 '12 at 0:05
show people the gui stuff its much more discoverable than the CLI – Luke McGregor Apr 7 '12 at 0:06
Emphasize the distributed part -- start early with branching, rebase, etc. – Rafe Kettler Apr 7 '12 at 0:11

1 Answer

up vote 1 down vote accepted

The main advice is about the nature of this tool:
The distributed aspect introduced an publication workflow (orthogonal to merging workflow between branches).
So amongst all the commands, don't forget to contrast CVCS (Centralized) with DVCS (Decentralized).

But if you mention the commands, insists on the difference between porcelain and plumbing (important if you want to script).

And the hardest parts remain:

  • the rebase operation (I always hard an hard time between ours and theirs), and its consequence (it doesn't "rewrite the history", it creates new one which is problematic if the old history has already being published).
  • the cherry-picking, which is handy but can lead to issue (duplicate commits, and problematic merges)

See "How do I push changes to a git repo with conflicting history?" for more.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.