Git SCM Notes

From PeformIQ Upgrade
Jump to navigation Jump to search

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