zoukankan      html  css  js  c++  java
  • Git

    索引:

    目录索引

    参看代码 GitHub:

    git.txt

    一、示例:

    1 git clone https://github.com/liumeng0403/lm.solution.git

    二、说明:

      1."clone" 部分

        该部分指明是对远端已存在仓库的克隆动作,远端仓库被克隆到本地后,在本地就是一个git仓库,

        并且这个git仓库自动默认追踪克隆过来的远端仓库,如 local:dev-->remote:dev、local:master-->remote:master 等等。

      2."https://github.com/liumeng0403/lm.solution.git" 部分

        这部分是远端仓库的地址(URI) ,可根据实际情况替换为自己项目的远端仓库地址。

      3.语法

        git clone [--template=<template_directory>]

            [-l]

            [-s]

            [--no-hardlinks]

            [-q]

            [-n]

            [--bare]

            [--mirror]

            [-o <name>]

            [-b <name>]

            [-u <upload-pack>]

            [--reference <repository>]

            [--separate-git-dir <git dir>]

            [--depth <depth>]

            [--[no-]single-branch]

            [--recursive|--recurse-submodules]

            [--]

            <repository>

            [<directory>] 

         上面是一个完整的 git clone 语法语句,只有 “<repository>” 项部分是必须项,语法较为简单,可自行谷歌查看每项具体含义。

                                             蒙

                                        2018-06-09 00:22 周六

  • 相关阅读:
    Unity 类似FingerGestures 的相机跟随功能
    protected 学习
    Unity 学习Json篇
    Unity 动态加载 Prefab
    iTween基础之iTweenPath(自定义路径移动)
    Unity连Photon服务器入门详解
    如何用unity3d实现发送带附件的邮件
    【转】【风宇冲】Unity3D教程宝典之Web服务器篇
    unity Editor编辑器插件脚本学习
    收集整理Android开发所需的Android SDK、开发中用到的工具
  • 原文地址:https://www.cnblogs.com/Meng-NET/p/9158098.html
Copyright © 2011-2022 走看看