-
let git manage a code repository:
git init
-
stage modified files or add untracked files to git repo:
git add <files>
-
stage all tracked files(this is very useful especially if you have multiple files to be staged):
git add -u
git commands manual
发表评论