git - Commit files without Staging -
i new git , using git extension. want ask when commit directory whether these file automatically go staging or these committed without staging?? can commit files without staging??
yes, can stage , commit using a , m in commit:
git commit -am "my commit message"
however, tend use git add -u anyway because above command not stage untracked files.
Comments
Post a Comment