Newer
Older
git_practice / README.md
Practice
====

~/.emacs に足せ!
````
(setq make-backup-files nil)
````

Are you enjoy git life ?
This repository is for git practice.

hogehoge

### process push
* git clone URL

Edit the umko file!  
* git add hoge/hoge.file 
* git commit -m "hogehoge"
* git push


|git push|アップロード|
|----|----|
|git fetch|ダウンロード|
|git merge|2つのブランチを合流|


| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
|左|右|中央|

.gitの削除
 find . -type d -name .git で.gitがあるか確認
→$ ls -a で見れるドン

 find . -type d -name .git -print0 | xargs -0 rm -rf
で削除でき
→$ rm -rf directory_name で消せるドン