博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
6.Git工具
阅读量:6847 次
发布时间:2019-06-26

本文共 1440 字,大约阅读时间需要 4 分钟。

 

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;">

 
 
 
 

转载于:https://www.cnblogs.com/xuxaut-558/p/9910826.html

你可能感兴趣的文章
二进制的补码、反码
查看>>
python入门学习之变量篇
查看>>
负载均衡lvs 解析
查看>>
Centos6.4系统文件服务之VSFTP
查看>>
Java网络编程之非阻塞I/O服务器TCP实例
查看>>
Windows Server 2012 Hyper-V故障转移集群虚拟机亲和性策略
查看>>
python获取当前日期前后N天或N月的日期
查看>>
mysql系列之复制1----原理篇
查看>>
CCNP精粹系列之三十二--BGP下一跳问题,推荐
查看>>
详解JSP九个内置对象
查看>>
MySQL深入03-锁-事务-GTID
查看>>
Linux Kickstart无人值守安装(上)
查看>>
安装libpcap错误处理
查看>>
Effactive Java -- 对于所有对象都通用的方法
查看>>
Android 中文 API (101) —— AsyncTask
查看>>
Silverlight学习笔记之使用TranslateTransform控制对象位置
查看>>
在Web Application中集成CAS登录模块
查看>>
webApp路由控制-vue-router2.0
查看>>
PyQT实现扩展窗口,更多/隐藏
查看>>
阿里巴巴最新开源项目 - [HandyJSON] 在Swift中优雅地处理JSON
查看>>