Git Commands Flashcards ionicons-v5-c

clone an existing repository

git clone ssh://user@domain.com/repo.git

switch HEAD branch

git checkout

delete a local branch

git branch -d

publish your tags

git push --tags

abort a rebase

git rebase --abort

lists all ignored files in this project

git ls-files --other --ignored --exclude-standard