-
7 years ago
Git Cheat Sheet
git
Branching Create branch git checkout -b <branch name> Delete local branch git branch -d <branch name> Delete remote branch git push origin :<branch name> Synchronize your local branc…
-
7 years ago
Automatic creation of repository when using gitolite
git gitolite bash
The last couple of days I've been playing around with git and setup my own git server using first gitosis and then gitolite. When playing around I created a lot of different test repositories to make…