What you'll learn:
- Build rock solid foundation in Git and related concepts
- Learn Git installation on multiple platforms
- Learn git repository configuration & basic operations (add, commit, status, log)
- Learn Git branches and merge operation's intricacies
- Learn what GitHub is and how to perform basic ooperations (fork, clone, fetch, pull, push)
- Learn basics of public key cryptography and HTTPS/SSH connection with GitHub
- Learn basics of file management in git bash environment
- Learn how to undo changes in Git repository (checkout, reset, revert and clean)
- Learn how to customize/colorize Git bash prompt for productivity
- Learn how to install and configure the default text editor for Git
- Learn how to install and configure a Git diff and merge tool
- Learn commit history rewriting & time travel (amend, rebase, reflog)
- Learn Git Tagging & Git Stashing and all the intricacies
- Learn GitHub Pull requests and workflows
- Learn & Master GitHub features (Markdown, Wiki, Gists, Issues, Project Boards)
- Learn GitHub Pages & have fun creating websites
- Learn the aspects of .gitignore file
- More content being added on a regular basis...
Students are loving this course - here are a few REVIEWS for this course:
"For the first time, I managed to understand git and have it installed on my computer without any hustle. This must be the best git course on udemy hands down. The lecturer's CLI has big texts which makes it easier to follow and always explains his steps. Please make more videos like this and take my money !" -Mr. Kelvin Mbewe
"This is an exceptional course, perhaps one of the best I've ever taken. The material is extremely well organized, and lessons are presented in a logical sequence. Bibhash is an enthusiastic instructor, and he has a very pleasant and engaging presentation style. I highly recommend this course. Thank you, Bibhash!" - Rebecca L. Lloyd
"The teacher has a very even pace and explains things thoroughly. He has a nice tone of voice - not too slow, not too fast. He explains git in a step-by-step manner that is easy to follow. He knows the topic well and explains it well by leading you through examples in the terminal by telling how, what, and why he is doing each step. I like learning about git from this guy. Everything is proceeding smoothly. Thank you Bibhash for teaching this course! I enjoy it a lot. Cheers!" -Jeff Jackson
"Excellent course. I will buy any course from this instructor simply for his effort in explaining the subject with so much passion. He covers the subject in depth. Visual tools to explain the concepts are very good." - Sriram Subramani
"Excellent course and instruction style! worth the money." - Josh Schmid
This course is aimed at providing rock solid foundation in Git. It covers the most needed basic, intermediate, and advanced 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 a few hours. However, this is not to say that this Git course covers things in a 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 have been laid down with great consideration and due diligence. The sections devoted to GitHub bear 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 cover the basic, elemental, and advanced concepts in great detail. The Labs are the highlights of this course which implements all the concepts that are explained thoroughly and exhaustively in the presentations.
Course Layout
The section Introduction and Getting Started covers a great overview of Git that will warm up the student before taking on the concepts layered in the subsequent sections. To spice up things, it briefly covers the history of Git. Next, the fundamental principles that govern Git are explained with well-illustrated diagrams so that students don't face difficulty in facing the Labs that implement those concepts and principles. This section also introduces the Instructor and explains how to go through this Git course so that one gets the best out of it.
The section Git Setup and Installation demonstrates the installation process of Git on all three prevalent platforms, namely Windows, Linux, and Mac. Each platform is covered nicely with detailed explanations so that students do not face any difficulty in understanding the Git setup process and one can get up and running without a hitch.
The section Setting up a Git Repository explains thoroughly the Git configuration process which forms the basic prerequisites before one goes to the next step of creating Git repositories. Once the prerequisites are taken care of, the subsequent lectures carefully craft it way through explaining the step-by-step process of the Git repository creation process. The Git repository creation process comes in three flavors - creating from scratch with nothing on hand, converting an unversioned code base to a Git repository, and Cloning a Git repository that exists on GitHub.
In the Shell Commands section of the Git & GitHub course, you'll gain hands-on experience with essential shell commands like pwd, ls, cd, touch, rm, and more. These commands form the backbone of efficient navigation and file management within the terminal, a crucial skill for any developer working with Git. By mastering these commands, you'll not only streamline your workflow but also enhance your ability to automate tasks and interact seamlessly with your Git repositories. This foundational knowledge empowers you to navigate and manage your projects with confidence and precision.
The section Enter GitHub explains this massively popular web-based Git repository with utmost care and precision. It explains the hugely popular and effective GitHub"fork" and "clone" processes. Before that, there are sections that navigate through GitHub in order to make the student familiar with the GitHub website, its user interface, and the general remote repository management process.
The section Committing changes in Git is where the action starts approaching the climax. Here the student will work on the Labs in order to understand the few concepts that form the pillars of Git, namely the "Git states". One can understand how an artifact (file, directory, etc.) goes through the Git workflow to reach the climactic point wherein the artifacts are safely placed in the Git database.
The section Inspecting what's going on in a Git Repository explains how to peek into the internal workings of Git. In short - what's going on behind the scenes? Git status and log checks are covered in great detail wherein students start appreciating the beauty of Git.
In the Ignoring FIles in Git section, you'll learn how to use the .gitignore file to exclude specific files and directories from being tracked by Git. This feature is crucial for keeping your repository clean and efficient, preventing unnecessary files like temporary or sensitive data from cluttering your version history. By mastering this, you ensure that your projects remain organized and secure, enhancing collaboration and productivity in any development environment
The section Git Branching Basics covers branching basic concepts. Branching is an advanced concept and an attempt has been made not to burden the student with gory details of this advanced concept.
The section Undoing changes in a Git repository covers great details on the mechanisms you can use to undo changes in Git repository in case one changes his mind and wants to revert changes or fix any mess up. Techniques such as resetting, reverting, cleaning, and checkout for a Git repository have been treated with great care and detail.
The section Pushing into GitHub makes things hotter when the students start learning how to extend one's arms beyond their local repository in a local machine to a remote repository onGitHub. The local-remote interaction and play are fascinating as the lectures in this section unravel the usage if Git andGitHubin a step-by-step manner.
The section GitHub via SSH is an advanced one and hence has been kept for the last. Here you will learn how to connect with GitHub via SSH protocol. In the learning process, the student will learn the basics of public key cryptography and its implementation w.r.tGitHub. SSH key generation and using them to connect local Git repository and GitHub forms a stimulating walk in the entire learning path.
The section Making Git bash friendlier and productive will empower you to have a Git bash prompt that allows customization in terms of its content, color, and functionality. It makes Git commands and their output highly readable and adds more expressiveness and color to all operations in the Git bash terminal.
The section Installing and Configuring default text editor for Git demonstrates how to install a graphical text editor (Sublime Text) and configure it as the default text editor for Git.
The section Installing and Configuring Diff and Merge tool for Git repository demonstrates how to install and configure "p4merge" as a Git diff and merge tool.
The section Git Comparison with Git Diff Tool (p4merge) demonstrates how to perform Git comparisons between various sections of a Git repository using p4merge
The section Git Branching and Merging Techniques demonstrates advanced techniques for Git Branching and Merging that include - fast-forward merge, no-fast-forward merge,3-way merge along merge conflict resolution process.
The section Commit History rewriting in Git demonstratesvarious techniques for modifying commit history to suit your project needs. You can amend your commits, do a rebase, and so on.
The section Git Tagging demonstrates how to use tags to mark production releases with tags and how to manipulate tags for the best outcome
The section Git Toolset demonstrates the Git tool "stash" which is an extremely convenient tool for saving off unfinished work.
The GitHub Features section of the Git & GitHub course delves into powerful tools that enhance your GitHub experience, including GitHub Flavored Markdown, GitHub Wiki, GitHub Gists, GitHub Issues, and GitHub Projects. You'll learn how to leverage Markdown for rich documentation, create and manage wikis for collaborative knowledge sharing, and use Gists for sharing snippets of code. Additionally, this section covers GitHub Issues for tracking bugs and tasks, and GitHub Projects for organizing work and streamlining project management. Mastering these features will significantly boost your productivity and collaboration within GitHub, making you a more efficient and effective developer.
The GitHub Pages section of the Git & GitHub course is designed to guide you through the process of creating and deploying a website directly from your GitHub repository. You'll learn how to set up and configure GitHub Pages, customize your site using Jekyll, and publish your content seamlessly. This section empowers you to showcase your projects, portfolios, or documentation online, giving you a powerful tool to enhance your online presence and share your work with the world effortlessly.
On the final note in the section Let's wrap up, the Instructor thanks the course-taking students with some bonus tips!
Course Features
The course is heavily 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.
Udemy Money back guarantee
If you enroll in this course, I guarantee you the satisfaction of learning this hot technology with awesome lectures and Labs! However, there is nothing to lose, if you feel otherwise, since any Udemy course comes with 30 day money-back guarantee! SO WHY WAIT! ENROLL IN THIS COURSE NOW!