Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git remoev .DS_Store

find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch

//Add this line to the file .gitignore:

.DS_Store

//Create `.DS_Store` file in the root of the project.
echo .DS_Store >> .gitignore

//Commit file
git add .gitignore
git commit -m '.DS_Store banished!'
Comment

PREVIOUS NEXT
Code Example
Shell :: sudo command without giving password 
Shell :: ubuntu open with code 
Shell :: 7z e into folder linux 
Shell :: ubuntu set sudoers to use vim 
Shell :: GIT Error refname refs/heads/master not found 
Shell :: nohup & 2 &1 
Shell :: react native git error: src refspec main does not match 
Shell :: git stash all changes 
Shell :: errno 2 no such file or directory less 
Shell :: jupyter notebook allow root 
Shell :: validate ssl certificate on website using curl 
Shell :: bash delete all symlinks 
Shell :: brew error 
Shell :: dart update 
Shell :: apache show active sites 
Shell :: loading json in js 
Shell :: python pip upgrade 
Shell :: PowerShell cant run curl command 
Shell :: bash create symlinks 
Shell :: windows 10 openssh server install failed 
Shell :: pocketsphinx 
Shell :: @react-navigation/bottom-tabs install 
Shell :: add git submodule 
Shell :: how to add user to group 
Shell :: how to tar linux 
Shell :: save android studio home bash_profile 
Shell :: django load data 
Shell :: conda check cuda version 
Shell :: docker-machine create digitalocean 
Shell :: the current branch has no upstream branch error 
ADD CONTENT
Topic
Content
Source link
Name
8+8 =