Sunday, December 19, 2010
Tuesday, October 26, 2010
Find mac address in windows
1. ipconfig -all
You will find a line having text "Physical address". This is the Mac address
2. Straight Forward Command => getmac
You will find a line having text "Physical address". This is the Mac address
2. Straight Forward Command => getmac
Tuesday, September 14, 2010
How to setup the GIt server
Use link to setup the git server
http://ao2.it/wiki/How_to_setup_a_GIT_server_with_gitosis_and_gitweb
http://ao2.it/wiki/How_to_setup_a_GIT_server_with_gitosis_and_gitweb
Tuesday, July 20, 2010
permission issue while deploying the code to the server using capistrano
sudo chmod go-rw /var/lib/gems/
This command will give the permission only to current user.
This command will give the permission only to current user.
Wednesday, July 14, 2010
GIT
1. While fetching a pull some time we get a error "can not merge due to local changes"
To get rid of this issue
=> git stash
=> git pull
=> got stash apply
2.if you are sure those changes got no value you can also: git reset --hard (that will remove the changes you have)
3. Just run the following command on the file or path you want to ignore the changes of:
4. http://www.sourcemage.org/Git_Guide
5. How to resolve the git merge :http://stackoverflow.com/questions/2073841/git-marking-files-as-resolved
To get rid of this issue
=> git stash
=> git pull
=> got stash apply
2.if you are sure those changes got no value you can also: git reset --hard (that will remove the changes you have)
3. Just run the following command on the file or path you want to ignore the changes of:
git update-index --assume-unchanged
If you wanna start tracking changes again run the following command:git update-index --no-assume-unchanged
4. http://www.sourcemage.org/Git_Guide
5. How to resolve the git merge :http://stackoverflow.com/questions/2073841/git-marking-files-as-resolved
Thursday, June 17, 2010
ROR Refrences
- Railscasts: Excellent free Rails screencasts
- PeepCode, Pragmatic.tv, EnvyCasts: Excellent commercial screencasters
- Rails Guides: Good topical and up-to-date Rails references. Rails Tutorial refers frequently to the Rails Guides for more in-depth treatment of specific topics.
- Rails blogs: Too many to list, but there are tons of good ones
Subscribe to:
Posts (Atom)