Posts

Showing posts from November, 2017

Splitting a large file on Windows

HJ Split - Nice tool but it does not preserve  lines. It breaks the files based on size of each part. Split for windows is available as part of  http://gnuwin32.sourceforge.net/packages/coreutils.htm Removing first n(5 in this case )  lines from a file MORE /E +5 input.csv > out.csv

Git - Overview

Introduction Git is becoming de-facto choice of source code control system for new generation of developers.  Git is based on distributed repositories. It manages the content in terms of snapshots and knows how to apply/rollback the changes between one snapshot to another. Most used commands  To track changes or stage changes git add filename To track or stage all files under dir1 git add  dir1\ To commit all the changes git commit -a To push the changes to remote git push origin master References: https://www.ibm.com/developerworks/library/d-learn-workings-git/index.html https://stackoverflow.com/questions/2745076/what-are-the-differences-between-git-commit-and-git-push https://drive.google.com/file/d/1PuZDiljecX31pDipbXxyfv8P2jhDwQo6/view?usp=sharing