custom pages

adunit2

adunit3

adunit4

Jan 2, 2013

Difference between git add . vs git add --all

git add . --- command will index any new files and staging modified files from your working tree to be committed. But it will ignore whatever you have removed files from your working tree.

git add -A/--all -- command will add any new files,modified content, and removed files from your working tree.

No comments:

Post a Comment