书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 19931 个相关结果.
  • Everyday Git

    NAME SYNOPSIS DESCRIPTION Individual Developer (Standalone) Examples Individual Developer (Participant) Examples Integrator Examples Repository Administration Examples G...
  • Installing with git

    Installing with git Installing with git The project is hosted at https://github.com/coleifer/peewee and can be installedusing git: git clone https : //github.com/coleifer/pee...
  • Git Workflow

    Diff Log Undo Unstaging Files Git Reset Modes TIP Keywords for closing issues Creating Command Shortcuts Remote repositories Fetching a remote Diff git diff allows yo...
  • Git Config

    Git Configuration Levels Identity Default editor OS related Configuring Default Push Behavior Git Configuration Levels The first thing you should do when you get started us...
  • Git索引

    基本操作 操作分支 操作标签 设定SSH连接 远端操作 Git设定 Stash Git-Subversion对比 疑难排解
  • Git设定

    Git设定 设定 用户名/电子邮件地址 输出彩色 设定命令的别名 把不需要用的文件归类到非管理对象 管理空分支 显示设定清单 通过代理主机连接http 通过需要用户认证的代理主机连接http Git设定 设定 用户名/电子邮件地址 $ git config -- global user . name <username> ...
  • Git引用

    938 2019-04-08 《Git的核心概念》
    Git引用 Git引用 现在再来看引用,就会很简单了。如果我们想要看某个提交记录之前的完整历史,就必须记住这个提交ID,但提交ID是一个40位的 SHA-1 校验和,难记。所以引用就是SHA-1 校验和的别名,存储在.git/refs 文件夹中。 最常见的引用也许就是master 了,因为这是Git默认创建的(可以修改,但一般不修改),它始终指向你...
  • Git 签名

    Git 签名 Git 签名 Tags 和 commits 都可以通过 Yubikey GPG 钥匙来进行签名。
  • Git Ignore

    983 2018-03-21 《macOS Setup Guide》
    Git Ignore (global) Git Ignore (global) Create the file ~/.gitignore as shown below to not track files that are almost always ignored in all Git repositories. # Folder view c...
  • Git ignore

    Git Ignore Git Ignore 创建一个新文件 ~/.gitignore ,并将以下内容添加进去,这样全部 git 仓库将会忽略以下内容所提及的文件。 # Folder view configuration files . DS_Store Desktop . ini # Thumbnail cache files ...