How to Push an Empty Commit in Git

In this article, we will discuss how to push a commit in Git without making any changes. Git makes this process of pushing an empty commit super simple. It’s like pushing a regular commit, except that you add the –allow-empty flag. git commit –allow-empty -m “Empty-Commit”You will now need
Find the soul