zoukankan      html  css  js  c++  java
  • 6.Git工具

    Git工具分类

    Git工具的下载与安装

    • 一般启动用Git Bash

    设置Git Bash 环境

    LOOKS - CURSOR 光标颜色

    在E盘放仓库

    -在某一个盘建立仓库
    -GitBash后面的波浪线代表当前目录

    Bash命令体验


    Welcome to Git (version 1.9.5-preview20150319)

    Run 'git help git' to display the help index.
    Run 'git help ' to display help for specific commands.

    Administrator@SKY-20170313FFD /E/Github
    $ pwd
    /E/Github

    Administrator@SKY-20170313FFD /E/Github
    $ mkdir hello

    Administrator@SKY-20170313FFD /E/Github
    $ cd hello

    Administrator@SKY-20170313FFD /E/Github/hello
    $ pwd
    /E/Github/hello

    Administrator@SKY-20170313FFD /E/Github/hello
    $ echo hello
    hello

    Administrator@SKY-20170313FFD /E/Github/hello
    $ echo 'hello' > a.txt

    Administrator@SKY-20170313FFD /E/Github/hello
    $ cat a.txt
    hello

    Administrator@SKY-20170313FFD /E/Github/hello
    $ cp a.txt b.txt

    Administrator@SKY-20170313FFD /E/Github/hello
    $ ls ..
    Git github.jpg hello

    Administrator@SKY-20170313FFD /E/Github/hello
    $ move b.txt ../b.txt
    sh: move: command not found

    Administrator@SKY-20170313FFD /E/Github/hello
    $ mv b.txt ../b.txt

    Administrator@SKY-20170313FFD /E/Github/hello
    $ ls
    a.txt

    Administrator@SKY-20170313FFD /E/Github/hello
    $ mv a.txt c.txt

    Administrator@SKY-20170313FFD /E/Github/hello
    $ rm c.txt

    git config --list 查看配置信息

    配置:

    git config --global user.name "wangding"
    git config --global user.email "xxxxxxx"

    git version 查看安装环境

    <wiz_tmp_tag id="wiz-table-range-border" contenteditable="false" style="display: none;">





  • 相关阅读:
    harbor两层nginx代理导致push不成功401
    docker hub国内镜像
    iOS越狱后导入照片
    Failed to list *v1.Secret: secrets is forbidden: User "system:node
    Centos设置limit最大打开文件数和最大进程数
    grafana设置主页面板
    MySQL数据库设计规范
    tcp time_wait
    mysqldiff No module named utilities.common.tools
    mongodb 慢查询排查
  • 原文地址:https://www.cnblogs.com/xuxaut-558/p/9910826.html
Copyright © 2011-2022 走看看