gitセットアップ

sudo apt-get install git-core
which git

[core] excludesfile = /home/user/.gitignore より

/home/sho/.gitconfig 編集

[core]
excludesfile = /home/sho/.gitignore


/home/sho/.gitignore

*.o
*.lo
*.la
#*#
.*.rej
*.rej
.*~
*~
.#*
.DS_Store
*.sw[po]
tags
*.pyc
*.class


リポジトリ作って全ファイル追加、コミット

git init
git add .
git commit -a -m "first commit"