Git
分布式版本控制工具
Git最常用命令
命令名称 | 作用 |
---|---|
git init | 初始化本地库 |
git add ./文件名 | 把代码添加到暂存区 |
git commit -m '日志' | 把暂存区的文件添加到本地库 |
git push 链接 分支名 | 把本地库的代码加载到远程仓库 |
git clone 链接 | 克隆远程仓库代码 |
git pull 链接 分支名 | 拉取远程仓库代码 |
Git本地命令
命令名称 | 作用 |
---|---|
git config --global user.name 用户名 | 设置用户签名 |
git config --global user.email 邮箱 | 设置用户邮箱 |
git init | 初始化本地仓库 |
git status | 查看本地库状态 |
git add ./文件名 | 添加文件到暂存区 |
git rm --cached ./文件名 | 删除暂存区文件 |
git commit -m '日志信息' 文件名 | 提交到本地库 |
git reflog | 查看历史提交记录 |
git log | 查看详细提交信息 |
git reset --hard 版本号 | 版本穿梭 |
Git分支命令
命令名称 | 作用 |
---|---|
git branch 分支名 | 创建分支 |
git branch -v | 查看分支 |
git chechout 分支名 | 切换分支 |
git merge 分支名 | 把分支合并到前分支上 |
git remote -v | 查看远程库别名 |
git remote add 别名 链接 | 创建别名 |
git remote rm 别名 | 删除别名 |
git remote 别名 set-url url | 修改别名链接 |
git pull 别名 分支名 | 拉去代码 |
git clone 链接 | 克隆代码 |
git push 链接 分支名 | 提交到远程仓库 |