Submitted by heartin on Sat, 06/09/2018 - 02:19
Creating Git Repo Locally
Go to an empty directory and run:
git init
Adding files to Git Repo
Create a file README.txt with some test contents
If you do 'git status' the README.txt file will be shown as un-tracked file.
Run:
git add README.txt
Notes:
To add all files in a directory:
git add .
To add only modified files:
git add -u
Submitted by heartin on Sat, 06/09/2018 - 00:42
System Level Configuration
git config --system
Stored in etc/gitconfig in Mac / Linux. Similar structure in Windows, usually within usually within Program Files.
User Level Configuration
git config --global
Stored in ~/.gitconfig in Mac / Linux. Similar structure in Windows, within user home folder.
Repository Level Configuration
git config
Stored in .git/config in each repo. [node:read-more:link]
Submitted by heartin on Fri, 06/08/2018 - 22:28
Single File Systems
Users could make their own revisions of a document, commit changes, and merge them together. However, these systems (e.g. TCS) operates only on single files. It has no way of working with an entire project, so it does not support atomic commits affecting multiple files.
Examples include SCCS, RCS etc.
[node:read-more:link]
Submitted by sneha on Mon, 06/04/2018 - 03:27
Angular is a single page application. Single page served by angular is index.html. Below is the structure of default index.html.

<app-root> is a tag present in index.html. How angular will know about this tag. That is taken care by main.ts which is the first script that will run. Below is the structure of main.ts
[node:read-more:link]
Submitted by heartin on Sat, 06/02/2018 - 04:38
Groovy is designed as a companion to Java and not as a replacement language for Java. Groovy interoperates with other Java code and libraries smoothly. Everything you can do with Groovy can be done using Java, but Groovy help us reduce the amount of code written to a great extend. [node:read-more:link]
Pages