<source lang="text">
Added default git ignores
</source>
 
 # To see the commit message
 git log 
 # If you would like to replace the last commit info
 git commit --amend
 
== .gitattributes ==
We want to always use [https://help.github.com/articles/dealing-with-line-endings linux line endings.]
Write in ".gitattributes"
 # Declare files that will always have LF line endings on checkout.
 #*.py text eol=lf
 text eol=lf
 
 git add .gitattributes
 git commit
 
commit message
<source lang="text">
Added gitattributes to have LF line endings on checkout.
</source>