manishmarahatta.com.np
me@manishmarahatta.com.np
"programmer, emacs aficionado, linux addict, activist"
...STUPID content tracker
-manage multiple versions of documents, programs, web sites, etc.
-Valuable for team projects as well as individual projects
-setting track of where we are heading
-easily manage and manipulate huge chunks of data
-optimize or restore to previous version if necessary
-efficient
-better workflow
http://git-scm.com/downloads
sudo apt-get install git-all
sudo yum install git-all
sudo pacman -S git-all
emerge --ask --verbose dev-vcs/git
git config --global user.name "Mohit Void"
git config --global user.email null@void.com
-Open a Terminal/Prompt
-Make a new folder inside the Users dir (mkdir test)
-cd into the folder(cd test)
-This creates a hidden repository(folder) named .git
-The period means "this directory"
-This adds all files/folders to the repository
-Comment the task you completed
-This make an exact copy of the repository
-git commit –m “bug fixed”/ git commit
-Get updates from a remote repository and merge them into your own repository
-Track your changes(use it often)
-Create a text file and contribute your 'name', 'phone no', 'semester' and 'email' into my repository
CHEERS