Git版本控制

基础指令

# Git文件操作
git init                                  # 新建本地仓库
git clone                            # 克隆远程仓库
git add .                                 # 将文件添加到暂存区
git commit -m 'brief description'         # 将文件提交到本地仓库
git status                                # 查看所有文件状态
git status [filename]                     # 查看指定文件状态

# Git提交日志
git log                                   # 查看提交日志

# Git分支
git branch                                # 查看本地分支
git branch [branch name]                  # 创建本地分支
git checkout                 # 切换分支
git checkout -b              # 创建本地分支并切换至该分支
git merge                    # 合并branch name分支到当前分支
git branch -d                # 删除分支
git branch -D                # 强制删除分支

你可能感兴趣的:(C++项目预备知识,git)