Add, Push, Pull, Clone
The basic stuff that I use every day.
Last updated
The basic stuff that I use every day.
git add .Add all changes to the index before using commit
git pullPull down all updates from the working branch on Dev
git commitCommit all your local changes to the working branch, leaving out any message or description automatically opens VS Code to allow for a message and description to be added.
git clone https://your.repo.address NewFolderNameLast updated