There was an error while loading. Please reload this page.
#Git Commands
git clone - clones repository into a new directory in your local machine
git clone
git status - checks the changes you made in your local and compared it to the online repository or branch
git status
git add - adds file changes to your local directory index
git add
git commit - record changes to your local repository
git commit
git push - update remote repository based on your local repository
git push
git fetch - download objects and refs from the online repository
git fetch
git checkout branchname - switch branches or restore working tree files
git checkout branchname
git pull --rebase origin master - synchronizes other branches with master. reduces conflicts during merge.
git pull --rebase origin master