-
Git How to list committed files that are going to push ?
In Git, we can use git show commit_id --name-only to list all the committed files that are going to push to the remote repository.
Date: 2019-08-11 View: 1520
-
Git How to undo the last commit?
In Git, we can use git reset --soft HEAD~1 to undo the last commit in local. (The committed files haven’t pushed to the remote git server)
Date: 2019-08-11 View: 1520