250 likes | 290 Views
This presentation on Git push will help you learn about the push command in Git. First, we will have a look at the basics of Git and GitHub. Then we will see the most prominent commands used in Git. After that, we will learn the basics of Git push command, and along with that, we will see a hands-on demo of pushing a file and folder from our local repository to the remote repository.<br><br>The below topics will be explained in this Git presentation:<br>1. What is Git?<br>2. What is GitHub?<br>3. Different commands in Git<br>4. Git push<br>5. Demo of the push command<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’s in it for you? What is Git? What is GitHub? Different commands in Git Git push Demo of the push command
What is Git? Git is a version control system for tracking changes in computer files. It is used for coordinating work among several people on a project and tracking progress over time Your work Master
What is Git? Git is a version control system for tracking changes in computer files. It is used for coordinating work among several people on a project and tracking progress over time Master Someone else’s work
What is Git? Git is a version control system for tracking changes in computer files. It is used for coordinating work among several people on a project and tracking progress over time Master
What is GitHub? • GitHub is a Git repository hosting service, which provides web-based graphical interface • GitHub helps every team member to work together on the project from anywhere, and makes it easy for them to collaborate
Different commands in Git Git config Configure the username and email address
Different commands in Git Git config Configure the username and email address Git init Initialize a local Git repository
Different commands in Git Git config Configure the username and email address Git init Initialize a local Git repository Git add Add one or more files to staging area
Different commands in Git Git config Configure the username and email address Git init Initialize a local Git repository Git add Add one or more files to staging area View the changes made to the file Git diff
Different commands in Git Git config Configure the username and email address Git init Initialize a local Git repository Git add Add one or more files to staging area View the changes made to the file Git diff Git commit Commit changes to head but not to the remote repository
Different commands in Git Git reset Undo local changes to the state of a Git repo
Different commands in Git Git reset Undo local changes to the state of a Git repo Git status Displays the state of the working directory and staging area
Different commands in Git Git reset Undo local changes to the state of a Git repo Git status Displays the state of the working directory and staging area Git merge Merge a branch into an active branch
Different commands in Git Git reset Undo local changes to the state of a Git repo Git status Displays the state of the working directory and staging area Git merge Merge a branch into an active branch Git push Upload content from local repository to a remote repository
Different commands in Git Git reset Undo local changes to the state of a Git repo Git status Displays the state of the working directory and staging area Git merge Merge a branch into an active branch Git push Upload content from local repository to a remote repository Git pull Fetch and download content from a remote repository
What is Git push? pull Project GitHub GitHub commit add push
What is Git push? pull Project GitHub GitHub • Git push is used to push the local repository content to a remote repository • After a local repository has been modified a push is executed to share the modifications with remote team members commit add push
Demo of the push command