Update and Publish Flashcards
1
Q
git remote - v
A
list all currently configured remots
2
Q
git remote show
A
show information about a remote
3
Q
git remote add
A
add new remote repository, named
4
Q
git fetch
A
download all changes from , but don’t integrate into HEAD
5
Q
git pull
A
Download changes and directly merge/integrate into head
6
Q
git push
A
Publish local changes on a remote
7
Q
git branch -dr
A
delete a branch on the remote
8
Q
git push –tags
A
Publish your tags