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/pullContainer Image. has auto vulnerability scan for Container Imagegit push --force origin __branchโ topushlocal Commit toremoteRepo & FORCE sync to local (discardremotehistory) ๐ฅ bad for teamwork!git push -u origin masterโ topushlocal Git Repo Branch at Master toremoteRepogit 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!