git status命令表示:文件,文件夹在工作区,暂存区的状态,下图就是文件,文件夹三种状态: Changes to be committed: (use "git restore --staged <file>..." to unstage) new file: bbbb.txt Changes not staged for commit: (use "git add <file>..." to update what will be c…
GIT 版本控制常用命令汇总 git version 查看当前git版本信息 git help 获取全部命令帮助信息 git help <command> 获取指定命令帮助信息 git config user.name "Your Name Comes Here" 设置当前项目git用户名 git config --global user.name "Your Name Comes Here" 设置全局项目git用户名 git config user…