Package:Git

From Funtoo
Jump to navigation Jump to search

Git

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Git is a revision control system used extensively under funtoo linux, and kernel.org. It is a distributed revision control system with a work flow that breaks away from the traditional client ----> server model to the git <--> git model. revision control means that the program operates like a progress save state in a game. you can save at the start of the game, mid way through, and at the final stage. if you desire to do sub quests you can load up the mid save point and then explore other areas of your code. git is suitable for just about everything regarding text. git is a bad choice for frequently changing binary files.

root # git config --global user.email "you@funtoo.org"
root # git config --global user.name "yourusername"

set your configuration file:

  • /etc/conf.d/git-daemon

restart the daemon.

root # /etc/init.d/git-daemon restart

Media