Horje
git filter-branch remove file Code Example
git filter-branch remove file
# Say you have a file (e.g. sensitive, really large,...) that you want removed from
# your repository (local and remote, current and history)
git filter-branch --tree-filter 'rm filename' HEAD


# https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository
# https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-large-files-on-github
Source: git-scm.com
delete file from a branch git
git rm --cached file1.txt
git commit -m "remove file1.txt"




Shell

Related
Deploy all file and subfolder git cpanel Code Example Deploy all file and subfolder git cpanel Code Example
find location for powershell profile ps1 file Code Example find location for powershell profile ps1 file Code Example
locate all exe file in powershell Code Example locate all exe file in powershell Code Example
open gui of git repo Code Example open gui of git repo Code Example
install cuda drivers in ubuntu Code Example install cuda drivers in ubuntu Code Example

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