Archive | Linux/Unix

Hudson installation and phpcs integration process

Feb 2nd, 2012No Comments

VN:F [1.9.10_1130]
Rating: 10.0/10 (1 vote cast)
VN:F [1.9.10_1130]
Rating: 0 (from 0 votes)

Creating Tag in Git

Dec 13th, 2011No Comments

There are 2 steps to create a tag in Git

Creating Annotated tags

  1. -a refers to tagname
    -m refers to tag message

    $ git tag -a v1.2 -m 'version 1.2'

    as the above command is executed the tag will be created in you local system .

  2. You need to push the tag to Git project repository
    $ git push --tags

Creating a Simple tag

  1. $ git tag tagname 
VN:F [1.9.10_1130]
Rating: 9.5/10 (2 votes cast)
VN:F [1.9.10_1130]
Rating: 0 (from 0 votes)

Putty or Linux Tar and UnTar files

Aug 25th, 2011No Comments

For Creating tar file.

tar cvf folder_name.tar folder_name

For Extracting

tar -xf folder_name.tar
VN:F [1.9.10_1130]
Rating: 10.0/10 (4 votes cast)
VN:F [1.9.10_1130]
Rating: +2 (from 2 votes)