清屏快捷键:ctrl + L
命令名称 | 作用 |
---|---|
git config --global user.name 用户名 | 设置用户签名 |
git config --global user.email 邮箱 | 设置用户签名 |
git init | 初始化本地库 |
git status | 查看本地库状态 |
git add 文件名 | 添加到暂存区 |
git commit -m “日志信息” 文件名 | 提交到本地库 |
git reflog | 查看历史记录 |
git reset --hard 版本号 | 版本穿梭 |
$ git config --global user.name wang
$ git config --global user.email 18437908710@163.com
基本语法:
git init
将工作区的文件添加到暂存区
git add 文件名
gitstatus
将暂存区的文件提交到本地库
git commit -m “日志文件” 文件名
git status
查看历史版本
git reflog 查看版本信息
git log 查看版本详细信息
git reset --hard 版本号
命令名称 | 作用 |
---|---|
git branch 分支名 | 创建分支 |
git branch -v | 查看分支 |
git checkout 分支名 | 切换分支 |
git merge 分支名 | 把指定的分值合并到当前分支上 |
get branch -v
git branch 分支名
git checkout 分支名
git merge 分支名
命令名称 | 作用 |
---|---|
git remove -v | 查看当前所有远程地址别名 |
git remote add 别名 远程地址 | 起别名 |
git clone 远程地址 | 将远程仓库的内容克隆到本地 |
git pull 远程地址别名 远程分支名 | 将远程仓库对于分支最新内容拉下来后与本地分支直接合并 |
git remote -v 查看当前所有远程地址别名
git remote add 别名 远程地址
git push 别名 分支
git pull 别名 分支
git clone 远程地址