git笔记


前言

git学习笔记


提示:以下是本篇文章正文内容,下面案例仅供参考

一、git clone 用法

1.git clone

默认clone主分支

2.git clone -b [branch-name]

clone 指定分支

二、git config 用法

1.git config --list

列出配置的详细信息
代码如下(示例):

//使用git config --global user.name [***]配置
user.name=****
user.email=************
//使用git config --global alias.[简写] [原名]配置
alias.branch=br
alias.br=branch
alias.st=status
alias.co=checkout
alias.cm=commit
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=git@gitee.com:gxymmd/imx6ull_study.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.board_device.remote=origin
branch.board_device.merge=refs/heads/board_device
branch.master.remote=origin
branch.master.merge=refs/heads/master

三、git remote 用法

git remote 命用于在远程仓库的操作:

$ git remote -v

显示远程仓库详细信息:

origin  git@gitee.com:gxymmd/imx6ull_study.git (fetch)
origin  git@gitee.com:gxymmd/imx6ull_study.git (push)

git remote show [远程仓库名称]
用于显示某个远程仓库的详细信息

$ git remote show origin 

显示远程仓库详细信息:

* 远程 origin
  获取地址:git@gitee.com:***************
  推送地址:git@gitee.com:****************
  HEAD 分支:master
  远程分支:
    board_device 已跟踪
    master       已跟踪
  为 'git pull' 配置的本地分支:
    board_device 与远程 board_device 合并
    master       与远程 master 合并
  为 'git push' 配置的本地引用:
    board_device 推送至 board_device (最新)
    master       推送至 master       (最新)

四、git 与远程分支相关联

git branch --set-upstream-to=origin/[远程仓库某分支名称] [本地仓库某分支名称] 该命令将本地仓库某分支和远程仓库某分支绑定

$ git branch --set-upstream-to=origin/master master
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值