Horje
git amend commit message after push Code Example
how to change a commit message after push
git commit --amend -m "New commit message"
Then
git push --force
and you're done
git amend commit message after push
git checkout branch_name
git commit --amend -m "Modified message"
# if previous commit is not pushed yet
git push
# or if previous comment was pushed in a previous commit:
git push --force-with-lease branch_name




Shell

Related
git change comment Code Example git change comment Code Example
update node js with nvm Code Example update node js with nvm Code Example
git update comment Code Example git update comment Code Example
sourcetree change commit message not pushed Code Example sourcetree change commit message not pushed Code Example
gitlab change commit message Code Example gitlab change commit message Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10