美文网首页
git 命令

git 命令

作者: yesuu | 来源:发表于2015-11-03 15:11 被阅读52次

安装

windows 用户到这里下载安装:git-for-windows.github.io
linux 用户直接用包管理器安装:yumaptpacman

配置

用户信息

$ git config --global user.name “y”
$ git config --global user.email "y@example.com"

仓库

新建。创建新文件夹,打开,然后执行

$ git init

克隆

$ git clone <仓库地址>

记录历史

查看状态

$ git status

暂存

$ git add <文件名>

查看暂存后又做了什么修改

$ git diff

提交已暂存的修改

$ git commit -m "针对此次提交的描述"

改文件名

$ git mv <原文件名> <新文件名>

查看提交历史

$ git log

撤销

修改最后一次提交

$ git commit --amend

远程仓库

查看远程仓库

$ git remote -v

添加远程仓库

$ git remote add <远程仓库别名> <远程仓库地址>

仅下载远程仓库数据

$ git fetch <远程仓库别名>

下载并合并远程仓库数据

$ git pull

下载并衍合远程仓库数据

$ git pull --rebase

推送数据到远程仓库

$ git push <远程仓库别名>

修改远程仓库别名

$ git remote rename <原名> <新名>

删除远程仓库

$ git remote rm <远程仓库别名>

技巧

为命令起别名

$ git config --global alias.st status
$ git config --global alias.ci commit

相关文章

  • Github学习文档-3

    目录 1.Git 的基本的命令git init命令git status命令git add命令git commit命...

  • git实用命令

    git实用命令 1 git init 命令 初始化 git 仓库 repository 2 git add 命令 ...

  • git管理工具

    git分支命令 git提交命令

  • git 多条命令一次执行

    上代码git命令 && git命令

  • git入门

    这里对git init、git add、git commit命令进行一个总结。 $ git init 命令,该命令...

  • GIT 常用命令总结

    GIT 常用命令总结 GIT 初始化命令 命令描述git init初始化本地 git 仓库git config -...

  • Git命令整理

    Git命令 ———————————————— git配置: git基本步骤: git分支管理: 创建分支命令: 切...

  • git 分支

    git 显示所有分支(包含本地和远程)命令: git 删除本地分支命令: git 显示远程分支命令: git 删除...

  • Git命令集合

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

  • git使用指南

    常用命令 帮助类: git --help:显示git命令帮助信息git help -a:显示所有命令git hel...

网友评论

      本文标题:git 命令

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