A small script to check git repositories in workspace and their submodules. Checks if all submodules have same remote and there is a tag in the submodule for the containing project.
Category: GIT
LDAP authentication for Gitolite
On my server I have an LDAP directory where all the users are stored. To use this for user authentication for GIT using Gitolite you will need 3 things…
Migrate old GIT repos to a new remote
After I installed and setup GITOLITE i needed to move my repos from the old remote to the new one.
Installing GIT and GITOLITE on CentOS 6
I am using git for a while now. But I am accessing it over SSH without any management. This is enough till you want others to have access to your repositories.
GIT: Branches
How to manage branches in GIT …
GIT: Configuration
Using GIT became my daily content. How about making my day happier? More colorful? 🙂
GIT: Change commiter (author) name
Sometime when I access my GIT repo from the outside form a new station I forget to setup the .gitconfig file >:-(
GIT: Merging Branches
Merge master branch with origin/master branch: $ git merge origin/master Result Example: $ git merge origin/master Updating 0ebd30c..a99dc51 Fast forward configure.ac | 1 + contrib/Makefile.am | 9 +- … As fetch and merge are common operation it can be replaced…
GIT: Useful commands
Some useful commands to begin with: Ignoring changes (ie. autogenerated): $ git update-index –assume-unchanged $(git ls-files po m4) Create and switch to new branch: $ git checkout -b new_branch Switch to another branch: $ git checkout master Branch list: $…