80 likes | 100 Views
This presentation on Git Pull will help you learn about the pull command in Git. First, we will have a look at the basics of the pull command, and then we will see a hands-on demo of Git Pull, where we will pull files and folders from our remote repository to our local repository. Then we will make changes to those files and push them back on to the remote repository. <br><br>The below topics will be explained in this presentation:<br>What is Git Pull?<br><br>Learn the basics of Gitu2014a version control system (VCS), and understand how to set up Git in your system, list the three-stage workflow in Git, create branches and track files, create repository in Git, GitHub and more.<br><br>Whatu2019s the focus of this course?<br>Git is a version control system (VCS) for tracking changes in computer files and coordinating work on those files among multiple people. It is primarily used for software development, but it can be used to keep track of changes in any files.This course enables you to learn and solve versioning problems with your files and codes. All these concepts are presented in an easy to understand manner, using demos and assignments to clarify the concepts and present the actual method of implementation.<br><br>What are the course objectives?<br>- Git course offered by Simplilearn will enable you to:<br>- Understand distributed version control system and its features<br>- Set-up Git in your system<br>- List the three-stage workflow in Git<br>- Create branches and track files<br>- Create a repository in Git and GitHub<br>- Describe merging, cloning, rebasing, among others<br><br>Who should take this course?<br>- The following professionals can go for this course:<br>- Software Professionals<br>- Testing Professionals<br>- Software Architects and Designers<br>- Open source contributors and enthusiasts<br>- Developers who want to gain acceleration in their careers as professionals using Git and GitHub<br>- Managers who are technical subject matter experts, leading software development projects<br><br>Learn more at https://www.simplilearn.com/cloud-computing/git-training-course
E N D
What is Git pull? Local Repository Remote Repository Project Merge Fetch GitHub Origin/ Master
What is Git pull? • Git pull is used to fetch and merge changes from the remote repository to the local repository • Git pull is a combination of two commands, git fetch followed by git merge
What is Git pull? Git fetch command downloads content from the required remote repository • Git pull is used to fetch and merge changes from the remote repository to the local repository • Git pull is a combination of two commands, git fetch followed by git merge Git merge command combines multiple sequences of commits into a single branch
Demo of the pull command