Home Git常用命令
Post
Cancel

Git常用命令

1
2
3
4
5
6
7
8
9
10
11
12
git init     # 初始化仓库
git status   # 查看工作区状态
git add -A   # 添加文件
git commit -m "提交信息"  # 将文件提交到repository里
git log      # 查看提交的记录
git diff     # 查询更改信息
git checkout -- .        # 撤销更改
git reset --hard 1df0573 # 回退,取版本号前7位就可以了
git clean -xf            # 删除新加的文件
git checkout develop     # 切换到开发分支
git checkout -b xxx        # 创建本地分支
git remote update origin --prune    # 刷新远程分支列表
This post is licensed under CC BY 4.0 by the author.