
Explore the need for version control systems, and learn how distributed version control using Git and GitHub enables team collaboration, repository cloning and pushing, and managing versions, merges, and conflicts.
Explore git, a distributed version control system for tracking changes in source code and coordinating work among developers, and learn where to download it and what GitHub offers.
Install git on Windows from git-scm.com, verify with git --version, configure your identity with git config user.name and user.email, and register on GitHub.
Learn the Git workflow from local repositories to GitHub, including using the staging area, adding, committing, and pushing code, and pulling updates from a remote repository.
Create a remote repository on GitHub, set it to public, then initialize your local project, add and commit files, link with git remote add origin, and push to the remote.
Learn how to add an existing Java Spring Boot project to GitHub using Git Bash, including initializing a local repo, staging, committing, and pushing to a remote repository.
Learn to manage code with git and GitHub by creating local and remote repositories and performing push, pull, and commits using core commands like git init, git add, git status, and git commit.
Explore git and GitHub workflows using an IDE to push and pull code, manage local and remote repositories, commit and push changes, and track project history in a team workflow.
Learn to push project files from a local repository to a GitHub remote repository using VS Code, including initializing the repo, staging changes, committing, and publishing to GitHub.
Learn how to delete files in a git workflow: initialize a repo, stage changes, commit deletions, remove single or multiple files, and push updates to a remote repository on GitHub.
Learn how branches in Git create separate versions of a repository, with master as the default branch, and how developers merge changes back via pull requests and merges.
A warm welcome to the Git and GitHub course by Uplatz.
Git is by far the most popular and widely used modern version control system in use today. Git is a mature, actively maintained open source project originally developed in 2005 by Linus Torvalds of the Linux operating system kernel fame. A large number of software projects rely on Git for version control, and that includes professional projects as well as open source. Developers who have worked with Git are well represented in the pool of available software development talent and it works well on a wide range of operating systems and IDEs (Integrated Development Environments).
Git is a version control tool used widely by developers across the world. It helps individual developers keep track of changes as they work on different features in the same project, and helps teams organize their code. GitHub can integrate with Git - it is a web application that allows users to host, explore, and collaborate on code with their teams and the wider developer community.
Having a distributed architecture, Git is an example of Distributed Version Control System (DVCS). Rather than have only one single place for the full version history of the software as is common in once-popular version control systems like CVS or Subversion (also known as SVN), in Git, every developer's working copy of the code is also a repository that can contain the full history of all changes.
Why Git is popular?
There are many reasons why Git is popular. In addition to being distributed, Git has been designed with performance, security and flexibility in mind. The performance characteristics of Git are very strong when compared to many alternatives. Committing new changes, branching, merging and comparing past versions are all optimized for performance. Also, the algorithms implemented inside Git take advantage of deep knowledge about common attributes of real source code file trees, how they are usually modified over time and what the access patterns are.
GitHub is a cloud-based service that helps developers store and manage their code, as well as track and control changes to their code. In simple words, GitHub is a for-profit company that offers a cloud-based Git repository hosting service. Essentially, it makes it a lot easier for individuals and teams to use Git for version control and collaboration. GitHub’s interface is user-friendly enough so even beginners and new coders can take advantage of Git. Without GitHub, using Git generally requires a bit more technical savvy and use of the command line. GitHub is a development platform inspired by how developers work and manage their code. Thus it synchronizes well with Git.
This Git and GitHub course by Uplatz provides the foundation of how Git and GitHub work. The course covers the most commonly used Git commands, how and when to use them, as well as how to collaborate with developers using Git and GitHub. The GitHub features that are helpful for teams and enterprises are also discussed in this Git and GitHub course.
Git and GitHub - Course Syllabus
Version Control System
Git Introduction
Git Installation
Git Workflow
Creating Remote Repository
How to add existing project to GitHub using Git Bash
Working with Repositories
Deleting Files
Working with Branches