Git文件操作
$ git add [file1 file2 ...]
$ git add . #一次性添加全部文件包括当前目录
$ git rm #删除
$ git mv #文件改名(文件移动)
Git忽略管理
设置Git忽略的文件,这些文件不参与Git库的提交和管理。(例如[node_modules]文件夹)
- gitignore
更新最近的提交
- git commit -m "commit message"
- git commit --amend
- git commit -am "commit message" [--amend]
还不快抢沙发