Difference between revisions of "Git SCM Notes"

From PeformIQ Upgrade
Jump to navigation Jump to search
 
Line 35: Line 35:
Also see - [[Git_Notes]] | [[Summary_of_Git_Commands]] | [[Getting Started with Git]]
Also see - [[Git_Notes]] | [[Summary_of_Git_Commands]] | [[Getting Started with Git]]


=Handling Renamed Files=
See - http://stackoverflow.com/questions/12823976/how-to-modify-git-add-to-handle-deleted-files
git add . will add new and modified files to the index.  git add -u will delete files from the index when they are deleted on-disk and update modified files, but will not add new files. You need a combination of the two:
git add . && git add -u .
Addendum: It appears that the -A switch will catch all three: added, modified, and deleted files.
git add -A .
Note the extra '.' on git add -A and git add -u


[[Category:Git]]
[[Category:Git]]
[[Category:SCM]]
[[Category:SCM]]

Latest revision as of 06:48, 31 August 2015

Also see - Git_Notes | Summary_of_Git_Commands | Getting Started with Git

Overview

Check out this YouTube Video:

http://www.youtube.com/watch?v=4XpnKHJAok8

Links

Commands

git reset

Related SItes

Also see - Git_Notes | Summary_of_Git_Commands | Getting Started with Git

Handling Renamed Files

See - http://stackoverflow.com/questions/12823976/how-to-modify-git-add-to-handle-deleted-files

git add . will add new and modified files to the index. git add -u will delete files from the index when they are deleted on-disk and update modified files, but will not add new files. You need a combination of the two:

git add . && git add -u .

Addendum: It appears that the -A switch will catch all three: added, modified, and deleted files.

git add -A .

Note the extra '.' on git add -A and git add -u