Skip to content

Instantly share code, notes, and snippets.

View tru2dagame's full-sized avatar
💭
🏀

Tru tru2dagame

💭
🏀
  • Ubiquiti
  • Shanghai
View GitHub Profile
@tru2dagame
tru2dagame / Remove DS_Store .md
Created August 4, 2014 03:51
Remove .DS_Store Files From A Git Repository

Remove existing files from the repository:

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

Add the line

.DS_Store

to the file .gitignore, which can be found at the top level of your repository (or created if it isn't there already). Then

@tru2dagame
tru2dagame / emacs24.md
Created July 14, 2014 09:35
install emacs24 on Ubuntu

Install Emacs24 On Ubuntu

sudo apt-get install python-software-properties
sudo apt-get update
sudo apt-get install emacs24

Enjoy it