Monday, September 23, 2013
Monday, April 8, 2013
Quick intro to git
Here are some quick steps to setup a project under git - Say, you have a project called project at /path/to/project
git add f1
1. Initialize the git repository
cd /path/to/project
git init
This will create a directory called .git at /path/to/project
2. git add file1 file2 ...
Add the files that you'd like to be tracked
3. git commit -m "comments for commit"
This will "commit the changes
After that, you can make changes to the file and then do a "git diff" to see the changes
Unlike other repositories, you need to do "git add" each time
Say, you make changes to file - f1 - to put the changes into the repository, you need to do
git add f1
git commit -m "comment"
Friday, March 15, 2013
Thursday, March 14, 2013
Running cron under cygwin
Not a big deal at all ... I got it working on windows8 today ...
All I had to do was - run cron-config (after installing cron under cygwin ofcourse) .. inside a cygwin terminal that was started as administrator!
Thanks to this link - http://stackoverflow.com/questions/707184/how-do-you-run-a-crontab-in-cygwin-on-windows
All I had to do was - run cron-config (after installing cron under cygwin ofcourse) .. inside a cygwin terminal that was started as administrator!
Thanks to this link - http://stackoverflow.com/questions/707184/how-do-you-run-a-crontab-in-cygwin-on-windows
Subscribe to:
Posts (Atom)