This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#initialize github repo in a dir | |
git init | |
#add file or change to versioning | |
git add <file-path> | |
#add all files in dir (recursively) to versioning | |
git add -A | |
#commit changes locally |
NewerOlder