push
โ to sync local Git Repo to remote
aka push
git push origin master -u
-U
โ
flag to origin to Upstream remote
--force
โ
flag to overwrite Commit History on remote
Repo
git push --force origin __branch
โ
to push
local Commit to remote
Repo & FORCE sync to local (discard remote
history) ๐ฅ bad for teamwork!
git push --force-with-lease origin __branch
โ
to push local Commit to remote Repo & SAFELY sync (avoid overwrite remote history) โ often mandatory to not get fired!
git push -u origin master
โ
to push
local Git Repo Branch at Master to remote
Repo
Referencesโ
GCR
โ Google Container Registry to maintain/store/ver/push
/pull
Container Image. has auto vulnerability scan for Container Imagegit push --force origin __branch
โ topush
local Commit toremote
Repo & FORCE sync to local (discardremote
history) ๐ฅ bad for teamwork!git push -u origin master
โ topush
local Git Repo Branch at Master toremote
Repogit push --force-with-lease origin __branch
โ to push local Commit to remote Repo & SAFELY sync (avoid overwrite remote history) โ often mandatory to not get fired!