Correct way to use git push -f -


$ git branch   master *branch1 

$ git push -f

and on wrote origin/master local stale master. correct way use git push -f ?

git push -f origin branch1 

this force push branch1 , not master.


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -