Answers for "git exclude file from commit"

2

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
Posted by: Guest on May-15-2020
0

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
Posted by: Guest on January-14-2021
-1

git ignore not saving changes

git rm -rf --cached .
git add .
Posted by: Guest on June-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language