↧
Having fun with Git
This post is not titled “why git”, so I won’t talk about its incredible speed, the concept of distributed repository, or the absence of fifthy thousands “.svn” folders everywhere in your filesystem. I...
View ArticleGit tips and tricks
Display the active branch in the terminal prompt Add this line to ~/.bashrc PS1='\u@\h:\w$(__git_ps1 " (%s)")\$ ' Automatic add during commit git commit -am "message" It automatically adds already...
View Article