美文网首页
mac os 安装git

mac os 安装git

作者: 爱喝气泡水 | 来源:发表于2019-07-18 14:47 被阅读0次

Mac上安装使用git命令:

1、前置

git config --global user.name "your_name" 

git config --global user.email "your_email@gmail.com"

git config user.name

ssh-keygen -t rsa -C "your_email@youremail.com"      //生成公匙:供ssh使用

2、使用方法一

Git init

Git remote add origin git@github.com:lkp7321/git-tt.git

Git add a.txt

Git commit -m“init commit”

Git push origin master

3、基础

Git branch

Git branch -r

Git branch -a

Git branch master-name

Git checkout master-name

Git merge master-name

git status 

git status head

4、使用方法2

Git clone git@github.com:lkp7321/git-tt.git

5、拉取

(1)、== git pull origin master(master-name)

Git fetch origin master                    //拉取远程仓库到本地远程仓库(默认FETCH_HEAD)

Git branch -r                                    //查看本地远程仓库

git log -p master.. origin/master    //本地仓库和本地远程仓库  对比

git merge origin/master                  //本地仓库和本地远程仓库  合并

(2)、== git pull origin master

git fetch origin master:temp1      

 { 

//拉取远程仓库到本地仓库temp1(非默认:创建或合并到temp1)

// 可以用于拉取分支代码      

}

Git diff temp1                                  //本地仓库temp1和本地仓库master    区别

git merge temp1                             //本地仓库temp1和本地仓库master  合并 

相关文章

  • Git

    一、安装Git 在 Mac OS 上安装Git:直接从AppStore安装Xcode,Xcode集成了Git,不过...

  • Git基本操作教程

    ###安装Git **在Mac OS X上安装Git** 提供两种方法参考: 1、通过homebrew安装Git,...

  • Hexo博客搭建

    环境 Mac os安装Homebrewg软件包 安装Node.js 安装Git 查看node npm git 版本...

  • git的入门安装

    git的入门安装,常用命令 1.mac os安装git a.安装homebrew,然后通过homebrew安装G...

  • Mac上 git 的使用教程

    一. 在Mac OS X上安装Git 如果你正在使用Mac做开发,有两种安装Git的方法。 一是安装homebre...

  • git常用命令总结

    1.在Mac OS X上安装Git 直接从AppStore安装Xcode,Xcode集成了Git 2.git基本命...

  • Mac os 下安装 git 以及设置 git 自动补全

    mac os 下好像内置就安装了 git, 在终端下运行 git --version, 会显示 git versi...

  • mac os 上的github

    一、git安装 我的环境:mac os 10.13.6 1、下载:git官网或git-osx-installer2...

  • Git 简便安装方法及常用命令总结

    一.在Mac OS X上安装git Xcode集成了git,不过默认没有安装,你需要运行Xcode,选择菜单“Xc...

  • mac os 安装git

    Mac上安装使用git命令: 1、前置 git config --global user.name "your_n...

网友评论

      本文标题:mac os 安装git

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