Using Git
Table of Contents
- What are basic commands?
- What are Tags?
- What is Stagging?
What are basic commands?
git commit
- commit staged changes to repo
git status
- gives an update on git
git pull
- pulls down latest changes
git push
- push your local changes to remote repo
git clone
- used to clone down repos
What are Tags?
Merging development branch into the main git repo if working with method.
the Development branch commit gets sent to the main branch and waits as a pull request until it’s either rejected or accepted into the Master branch.
This can be used to ensure the quality of code being submitted.
What is Stagging?
a place where you can collect to together changes into a common commit.