We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This is some of the basic commands we need for Git
Clone the repository: git clone [email protected]:jthagesk/showme.git .
git clone [email protected]:jthagesk/showme.git .
The "." at the end specifies the current folder as the checkout folder.
Update/pull the repository: git pull
git pull
Add file: git add .
git add .
Commit all changes: git commit -a -m 'my hola mundo changes'
git commit -a -m 'my hola mundo changes'
Push: git push
git push
Create tag : git tag -a MsSQL_Version -m MsSQL
git tag -a MsSQL_Version -m MsSQL
Push tag: git push --tags
git push --tags