Git使用教程之初级入门命令行(二)

一、Git 操作流程图

1.git --help 查看帮助

[email protected] MINGW64 /d/Git (master)
$ git --help
usage: git [--version] [--help] [-C <path>] [-c name=value]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           <command> [<args>]

These are common Git commands used in various situations:

start a working area (see also: git help tutorial)
   clone      Clone a repository into a new directory
   init       Create an empty Git repository or reinitialize an existing one

work on the current change (see also: git help everyday)
   add        Add file contents to the index
   mv         Move or rename a file, a directory, or a symlink
   reset      Reset current HEAD to the specified state
   rm         Remove files from the working tree and from the index

examine the history and state (see also: git help revisions)
   bisect     Use binary search to find the commit that introduced a bug
   grep       Print lines matching a pattern
   log        Show commit logs
   show       Show various types of objects
   status     Show the working tree status

grow, mark and tweak your common history
   branch     List, create, or delete branches
   checkout   Switch branches or restore working tree files
   commit     Record changes to the repository
   diff       Show changes between commits, commit and working tree, etc
   merge      Join two or more development histories together
   rebase     Reapply commits on top of another base tip
   tag        Create, list, delete or verify a tag object signed with GPG

collaborate (see also: git help workflows)
   fetch      Download objects and refs from another repository
   pull       Fetch from and integrate with another repository or a local branch
   push       Update remote refs along with associated objects

‘git help -a‘ and ‘git help -g‘ list available subcommands and some
concept guides. See ‘git help <command>‘ or ‘git help <concept>‘
to read about a specific subcommand or concept.

2.git基础操作

[email protected] MINGW64 /d
$ cd D:/Git/   //cd到指定文件

[email protected]-xiaobing MINGW64 /d/Git
$ pwd  //查看当前文件目录
/d/Git  

[email protected]-xiaobing MINGW64 /d/Git
$ git init  //初始化本地git仓库
Initialized empty Git repository in D:/Git/.git/

[email protected]-xiaobing MINGW64 /d/Git (master)
$ git add test.txt   //从工作区添加本地文件test.txt到暂存区

[email protected]-xiaobing MINGW64 /d/Git (master)
$ git commit -m "test"  //从暂存区commit提交到本地仓库

//第一次安装Git提交commit的时候提示设置name和邮箱
*** Please tell me who you are.
Run
  git config //global user.email "[email protected]"
  git config //global user.name "Your Name"

[email protected]-xiaobing MINGW64 /d/Git (master)
$ git config //global user.name "xiaobing"   //根据提示设置name

[email protected]-xiaobing MINGW64 /d/Git (master)
$ git config //global user.email "[email protected]"  //根据提示设置邮箱

[email protected]-xiaobing MINGW64 /d/Git (master)
$ git commit -m "test"  //从暂存区commit提交到本地仓库
[master (root-commit) 9bc4419] test
 1 file changed, 1 insertion(+)
 create mode 100644 test.txt
//接下来从本地仓库push到远程仓库

3.创建远程仓库GitHub或者GitLib

4.提交变更

git remote add origin https://github.com/xbtest/Demo01.git   //git remote 用于管理远程仓库
git push -u origin master    //往名字为origin的仓库的master分支上提交变更的代码
[email protected] MINGW64 /d/eclipse-workspace/Demo01 (master)
$ git remote add origin https://github.com/xbtest/Demo01.git   //添加失败
fatal: remote origin already exists.
$ git remote rm origin   //执行rm删除后再次添加
$ git remote add origin https://github.com/xbtest/Demo01.git

第一次提交代码的时候提示登录

报错:

[email protected] MINGW64 /d/Git (master)
$ git push -u origin master
fatal: HttpRequestException encountered.
   ?????????????
Username for ‘https://github.com‘: xbtest
Everything up-to-date
Branch master set up to track remote branch master from origin.

这时候需要 更新Windows的git凭证管理器

点击下载安装 GCMW-1.14.0.exe
下载链接
https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/tag/v1.14.0

下载后双击安装即可,再次提交成功:

[email protected] MINGW64 /d/Git (master)
$ git push -u origin master
Everything up-to-date
Branch master set up to track remote branch master from origin.

5.验证查看

6.待续....

原文地址:https://www.cnblogs.com/xiaozhaoboke/p/11404038.html

时间: 2024-10-25 13:39:03

Git使用教程之初级入门命令行(二)的相关文章

[Oracle] SQL*Loader 详细使用教程(2)- 命令行参数

sqlldr工具 SQL*Loader的客户端工具是sqlldr,在操作系统的命令行下输入sqlldr,后面不接任何参数,将显示帮助信息如下所示(所有命令行参数的简单描述及其默认值),所以你并不需要对下面的参数死记硬背,当你忘记它们时,可以通过这个方式快速查询. [plain] view plain copy print? Valid Keywords: userid -- ORACLE username/password control -- control file name log -- 

Python - Git for windows 下使用 交互式命令行

1. 概述 尝试在 windows 环境的 git 命令行使用 python3 的交互模式 2. 环境 OS win10 1905 git 2.20.1 mintty 2.9.4 python 3.7.0 2. 问题 直接使用 结果 无法开启, 会卡住 3. 解决 命令 > winpty python 4. 其他 ref Git for windows的MINGW64终端无法使用Python的解决方法 疑问 winpty 是干嘛的 原文地址:https://www.cnblogs.com/xy1

Scrapy系列教程(1)------命令行工具

默认的Scrapy项目结构 在開始对命令行工具以及子命令的探索前,让我们首先了解一下Scrapy的项目的文件夹结构. 尽管能够被改动,但全部的Scrapy项目默认有类似于下边的文件结构: scrapy.cfg myproject/ __init__.py items.py pipelines.py settings.py spiders/ __init__.py spider1.py spider2.py ... scrapy.cfg 存放的文件夹被觉得是 项目的根文件夹 .该文件里包括pyth

Linux/Mac 日常入门命令行的规整总结

终端命令行之前做过泛泛的了解,然而疏导用书方恨少,一遇上用命令行配置环境就两眼一抹黑. 于是决定整理一下网上看到常用的一些. 日常文件夹及文件操作 进入某个目录:cd ~ 下载目录:cd ~/Downloads/ 返回上级:cd ..(.表示当前目录,..表示上级目录) ls 查看目录下的文件 更多内容:ls -l 隐藏文件:ls -a mv 移动,重命名文件 mv a b cp 复制文件和文件夹 把 a 复制为 b:cp a b 与 mv 一样,也可以跨目录复制:cp ~/Downloads/

(转)MySQL Workbench的使用教程 (初级入门版)

转自:http://www.cnblogs.com/yqskj/archive/2013/03/01/2938027.html MySQL Workbench 是 MySQL AB 最近释放的可视数据库设计工具.这个工具是设计 MySQL 数据库的专用工具. MySQL Workbench 拥有很多的功能和特性:这篇由Djoni Darmawikarta 写的文章通过一个示例展现了其中的一些.我们将针对一个订单系统建立一个物理数据模型,这里的订单系统可以是销售单也可以是订单,并且使用  forw

MySQL Workbench的使用教程 (初级入门版)

MySQL Workbench 是 MySQL AB 最近释放的可视数据库设计工具.这个工具是设计 MySQL 数据库的专用工具. MySQL Workbench 拥有很多的功能和特性:这篇由Djoni Darmawikarta 写的文章通过一个示例展现了其中的一些.我们将针对一个订单系统建立一个物理数据模型,这里的订单系统可以是销售单也可以是订单,并且使用  forward-engineer(正向引擎) 将我们的模型生成为一个 MySQL 数据库. MySQL Workbench 是 MySQ

搭建git服务器(临时服务器,命令行形式,针对2到5人左右,轻量)

服务端配置 ####################################################################################################################################################################################################################################################

CMD命令行二

图形化用户界面 calc control mmc notepad regedit (start命令也有用) dir | findstr /i "for" 忽略大小写查找 findstr "a" filename 在指定文件中查找内容 findstr 正则表达式 filename xcopy 类似copy 命令行选项更多 xcopy c:\book e:\book /E /I 将目录c:\book以及其中的所有文件和文件夹复制到e:\book /K 在副本中保留Sys

命令行二维码

https://blog.csdn.net/hello_dear_you/article/details/81205778 1. 介绍The pyqrcode module is a QR code generator that is simple to use and written in pure python. 2. 安装   pip install pyqrcode 3. 简单演示代码 import pyqrcode # a simple example of creating a QR