美文网首页
【Git】基础命令

【Git】基础命令

作者: 大Q本Q | 来源:发表于2019-07-08 10:23 被阅读0次

http://blog.jobbole.com/tag/git/page/5/

git add -A
git commit -a
git commit -a --amend (进入前一个commit,不会重新生成一个commit)
git branch // 查看分支
git branch branch_name // 创建分支
git branch -d branch_name // 删除分支
git log
git log --oneline
git reflog
git fetch branch_name
git merge branch_name
git pull == git fetch + git merge
git push branch_name
git status // 查看状态



reset

相关文章

  • Git命令集合

    Git基础命令 git远程关联 git远程关联移除 git命令简单简介 常用命令集合:git init创建版本库 ...

  • git操作

    git基础命令: git commit ---- 提交git branch newBranchName --- 新...

  • git 命令

    Git 项目命令文档 基础命令 分支管理 标签管理 搭建Git服务器

  • Git常用命令

    Git基础命令 Command line instructions Git global setup Create...

  • Tips for Git

    Tips for Git Git 版本跟 Git 基础操作 一致 快速补全命令 Tab键在命令行输入 git c...

  • git常用命令行

    基础git命令 查看分支:git branch创建分支:git branch name切换分支:git check...

  • 2016-06-24 阅读整理

    Git Git 基础命令Git 分支管理Git 分支合并Git 公钥提交Git 常用技巧Git 设置别名 Andr...

  • Git常用命令

    Git 常用命令总结 git的一些基础命令 Git常用命令 一般配置 登录git 创建一个文件夹 初始化git仓库...

  • git的一些基础命令 无标题文章

    git的一些基础命令 Git常用命令 请确保已经安装里git客户端 一般配置 git --version //查看...

  • Git常用命令整理记录

    Git命令: --基础使用-- 用户名:git config --global user.name "

网友评论

      本文标题:【Git】基础命令

      本文链接:https://www.haomeiwen.com/subject/rttyhctx.html