Oreilly - Complete Git and GitHub Masterclass - 9781789137293
Oreilly - Complete Git and GitHub Masterclass
by Bibhash Roy | Released January 2018 | ISBN: 9781789137293


Most comprehensive, STEP by STEP Git & GitHub tutorial with great examples; Upcoming: Git Workflow, BitBucket and more!About This VideoThe course is heavy hands-on with lots of great Lab sessions interspersed with brief slide presentations illustrating and unfurling the conceptual maze.All the commands that have been used in the relevant sections have been summarized in the form of text/pdf at the end of each section to consolidate the concepts that were laid down previously.In DetailThis course is aimed at providing rock solid foundation in Git. It covers the most needed basic and intermediate Git concepts that form the foundation of this wonderful source control management system (SCM) so that the student can go up and running within a matter of few hours. However, this is not say that this Git course covers things in hurry. On the contrary, all the foundation Git concepts are explained with utmost care so that the student feels (assuming a newbie or starter) comfortable with the concepts that has been laid down with great consideration and due diligence. The sections devoted to GitHub bears the same hallmark of care & clarity that the sections on Git are marked with. The Git & GitHub course is power-packed with intensive hands on Lab sessions that covers the basic and elemental concepts in great detail. The Labs are the highlights of this Git course which implements all the concepts that are explained thoroughly and exhaustively in the presentations. Show and hide more
  1. Chapter 1 : Introduction and Getting Started
    • Git Overview 00:03:12
    • A bit of background of Git! 00:01:26
    • How Git works - Part 1 00:02:52
    • How Git works - Part 2 00:03:07
    • Who am I 00:01:04
  2. Chapter 2 : Git Setup and Installation
    • Git Setup on Windows (Lab) 00:05:43
    • Git Setup on Mac (Lab) 00:03:00
    • Git Setup on Linux (Lab) 00:03:28
  3. Chapter 3 : Setting up a Git Repository
    • Basics and Introduction - setting up a Git Repository 00:02:32
    • Git Help system (Lab) 00:03:16
    • Configuring author and email for a Git repository (Lab) 00:04:53
    • Initializing an empty Git repository (Lab) 00:05:27
    • Convert existing unversioned project to a Git repository (Lab) 00:05:56
  4. Chapter 4 : Enter GitHub!
    • What is GitHub 00:07:58
    • Another technique for creating Git repository on GitHub! 00:01:21
    • What is fork and how to do it in GitHub (Lab) 00:03:42
    • Copying a GitHub repository (Lab) 00:02:59
  5. Chapter 5 : Committing changes in Git
    • Basics and Introduction - committing changes in Git 00:01:23
    • Adding your changes in a Git Repository (Lab) 00:06:38
    • Committing your changes in a Git Repository (Lab) 00:03:42
  6. Chapter 6 : Inspecting what's going on in a Git Repository
    • Basics and Introduction - Inspecting what's going on! 00:01:07
    • How to check status in a Git Repository (Lab) 00:09:03
    • How to check commit history in Git Repository (Lab) 00:05:16
  7. Chapter 7 : Git Branching basics
    • Peek into Git branching (Lab) 00:05:02
  8. Chapter 8 : Undoing changes in a Git repository
    • Checking out commits in a Git repository - Part 1 (Lab) 00:14:23
    • Checking out commits in a Git repository - Part 2 (Lab) 00:09:03
    • Checking out files in a Git repository (Lab) 00:07:01
    • Reverting changes in a Git repository (Lab) 00:04:58
    • Resetting Git repository - Part1 (Lab) 00:06:33
    • Resetting Git repository - Part2 (Lab) 00:06:44
    • Resetting Git repository - Part3 (Lab) 00:09:11
    • Cleaning Git repository (Lab) 00:15:26
  9. Chapter 9 : Pushing into GitHub
    • Basics and Introduction - pushing into GitHub! 00:01:15
    • Best practice - pulling changes from GitHub repository (Lab) 00:05:59
    • Transferring your commits - pushing local changes into GitHub repository (Lab) 00:05:38
  10. Chapter 10 : GitHub via SSH
    • Basic and Introduction - GitHub via SSH 00:03:13
    • Do I already have SSH Keys (Lab) 00:02:41
    • Let's generate an SSH Key pair for local and GitHub usage (Lab) 00:06:21
    • SSH Agent and keys (Lab) 00:01:36
    • Adding the SSH Key to GitHub account (Lab) 00:03:02
    • Checking your SSH connection with GitHub (Lab) 00:02:19
    • Switching remote GitHub URL (Lab) 00:07:02
    • Changing passphrase of SSH Key pair (Lab) 00:04:35
  11. Chapter 11 : Custom Bash prompt in Git
    • An Introduction Custom Bash prompt in Git (Lab) 00:08:44
  12. Chapter 12 : Installing and Configuring default text editor for Git
    • Brief Overview of Git text editors (Lab) 00:06:13
    • Installing and Configuring text editor (Sublime Text) for Git on Windows (Lab) 00:11:51
    • Installing and Configuring text editor (Sublime Text) for Git on Linux (Lab) 00:16:03
    • Installing and Configuring text editor (Sublime Text) for Git on Mac (Lab) 00:08:15
  13. Chapter 13 : Installing and Configuring Diff and Merge tool for Git repository
    • Brief Overview of Git diff and merge tools (Lab) 00:05:22
    • Installing Git Diff and Merge tool (p4merge) for Windows (Lab) 00:07:45
    • Configuring Git Diff and Merge tool (p4merge) for Windows (Lab) 00:05:38
    • Installing Git Diff and Merge tool (p4merge) for Linux (Lab) 00:07:35
    • Configuring Git Diff and Merge tool (p4merge) for Linux (Lab) 00:03:59
    • Installing Git Diff and Merge tool (p4merge) for Mac (Lab) 00:04:06
    • Configuring Git Diff and Merge tool (p4merge) for Mac (Lab) 00:04:17
  14. Chapter 14 : Git Comparison with Git Diff Tool (p4merge)
    • Viewing and Comparing changes - Git Working directory vs Staged (Lab) 00:09:59
    • Viewing and Comparing changes - Git Working directory vs Commit area (Lab) 00:03:28
    • Viewing and Comparing changes - Git Staging area vs Commit area (Lab) 00:06:50
    • Viewing and Comparing changes - between Git Commits (Lab) 00:13:10
    • Viewing and Comparing changes - for a single file (Lab) 00:02:43
    • Viewing and Comparing changes - Local vs Remote (Lab) 00:08:04
  15. Chapter 15 : Deep Dive into few Git Commands
    • Git log command in-depth : Part 1 (Lab) 00:09:32
  16. Chapter 16 : Git Branching and Merging techniques
    • Git Branching deep dive: branch deletions and renaming (Lab) 00:09:59
    • Git Branching deep dive: git checkout (Lab) 00:09:37
    • Git Merge using "fast-forward" (Lab) 00:07:43
    • Git Merge using "NO fast-forward" (Lab) 00:07:31
    • Git 3-way merge (Lab) 00:09:08
    • Resolving Git Merge Conflicts - Part 1(Lab) 00:16:23
    • Resolving Git Merge Conflicts - Part 2(Lab) 00:04:20
  17. Chapter 17 : Commit History rewriting in Git
    • Amending Git Commits (Lab) 00:09:47
    • Git rebase Introduction (Lab) 00:04:38
    • Git rebase implementation setup (Lab) 00:07:06
    • Git rebase implementation (Lab) 00:06:21
    • Resolving Git rebase conflict (Lab) 00:10:23
    • An Introduction to git fetch (Lab) 00:10:10
    • Git pull with rebase - Part 1 (Lab) 00:16:08
    • Git pull with rebase - Part 2 (Lab) 00:08:33
    • Git reflog: Part 1 (Lab) 00:08:56
    • Git reflog: Part 2 (Lab) 00:14:44
  18. Chapter 18 : Git Tagging
    • Git Tagging: Lightweight and Annotated (Lab) 00:11:15
    • Git Tagging: Determining Tag Type (Lab) 00:03:37
    • Git Tagging: Tag search (Lab) 00:02:19
    • Git Tagging: compare, update, delete tags (Lab) 00:09:18
    • Git Tagging: Pushing and Sharing all Tags (Lab) 00:02:47
    • Git Tagging: Deleting pushed tags (Lab) 00:03:12
    • Git Tagging: Pushing and Sharing Annotated Tags only (Lab) 00:06:20
    • Git Tagging: Pushing Annotated Tags by default (Lab) 00:09:17
    • Git Tagging: Checking out tags (Lab) 00:06:51
  19. Chapter 19 : Git Toolset
    • Git Stash Intro - Part 1: create, save, list & show (Lab) 00:15:00
    • Git Stash Intro - Part 2: apply, drop, pop, clear (Lab) 00:10:43
    • Git stash: Creating a Branch from a Stash (Lab) 00:08:59
    • Git stash: Creative stashing (Lab) 00:09:18
  20. Chapter 20 : Making Git bash friendlier and productive
    • Customize Git bash prompt (Lab) 00:17:34
    • Colorize Git bash prompt (Lab) 00:21:36
    • Git plugin for branch information (Lab) 00:08:44
    • Git plugin for working directory status information in Windows (Lab) 00:08:03
    • Git plugin for working directory status information in Linux (Lab) 00:08:42
    • Git plugin for working directory status information in Mac (Lab) 00:05:01
    • Git plugin for command auto-completion (Lab) 00:09:24
  21. Chapter 21 : Let's wrap up this Git course!
    • Final words! 00:01:27
  22. Show and hide more

    Oreilly - Complete Git and GitHub Masterclass


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss