Skip to content
li46554 edited this page Nov 6, 2023 · 1 revision

What is Git?

Git pronounced ([/ɡɪt/] is distributed version control system. This basically means that our team can collaborate on code projects for the robot

What is a Git Commit?(nice rhyme albs)

A Git Commit is a method by which a user can push their changes to a set of code to the code in the main repository.(i totally wrote this and did not copy)

What is Git Fetch?

The git fetch command downloads commits, files, and refs from a remote repository into your local repo. Fetching is what you do when you want to see what everybody else has been working on.

What is Git Push?

The git push command is used to upload local repository content to a remote repository. Pushing is how you transfer commits from your local repository to a remote repo. It's the counterpart to git fetch, but whereas fetching imports commits to local branches, pushing exports commits to remote branches.

What is Git Pull?

The git pull command is used to fetch and download content from a remote repository and immediately update the local repository to match that content. Merging remote upstream changes into your local repository is a common task in Git-based collaboration work flows.

Clone this wiki locally