标签:git add 目的 file style 版本库 工作 source 添加 多次提交
git add file1 file2 file3
git add file1
git add file2
git add file3
source目录下及子目录下所有文件,home目录下的所有.py文件
git source/*
git home/*.py
git add .
git add --all
git add 文件夹
git add 文件夹名
git add 目的是将修改文件由工作区提交到暂存区,可以多次提交,然后commit操作,将文件从暂存区提交到版本库
git commit -m "new commit"
标签:git add 目的 file style 版本库 工作 source 添加 多次提交
原文地址:https://www.cnblogs.com/r1-12king/p/13182971.html