remove a file from git commit
git reset --soft HEAD^
or
git reset --soft HEAD~1
git reset HEAD path/to/unwanted_file
git commit -c ORIG_HEAD
remove a file from git commit
git reset --soft HEAD^
or
git reset --soft HEAD~1
git reset HEAD path/to/unwanted_file
git commit -c ORIG_HEAD
git exclude some files from git commit
To exclude some files from git commit
-----------------------------------------------
syntax - git update-index --assume-unchanged <filepath>
example - git update-index --assume-unchanged default/config.php
To undo the above command
-----------------------------------------------
syntax - git update-index --no-assume-unchanged <filepath>
example - git update-index --no-assume-unchanged default/config.php
git ignore not saving changes
git rm -rf --cached .
git add .
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us