Git is a free & open source, distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
3
votes
2answers
207 views
Specifying which git repo to use
I have a bash script, called cgit, that acts as git for one specific git repo (located at /.git):
#!/bin/bash
cd /;
sudo git $@ > /dev/stdout
I use it to keep track of imporant system files:
...