git命令的使用

简介: git命令的使用

git学习

1.git命令学习

初始化

## 初始化本地库 git init

$ git init

Initialized empty Git repository in F:/devsoft/devsoft/.git/

//.git数据库存储本地库相关的子目录以及文件

-rw-r--r-- 1 l-b-neu 197121 130 6月  13 17:47 config

-rw-r--r-- 1 l-b-neu 197121  73 6月  13 17:47 description

-rw-r--r-- 1 l-b-neu 197121  23 6月  13 17:47 HEAD

drwxr-xr-x 1 l-b-neu 197121   0 6月  13 17:47 hooks/

drwxr-xr-x 1 l-b-neu 197121   0 6月  13 17:47 info/

drwxr-xr-x 1 l-b-neu 197121   0 6月  13 17:47 objects/

drwxr-xr-x 1 l-b-neu 197121   0 6月  13 17:47 refs/

设置签名 git config

#设置全局签名

$ git config --global user.name elite

$ git config --global user.email elite@elite.com

#查看项目级别的签名

$ cat .git/config

[core]

       repositoryformatversion = 0

       filemode = false

       bare = false

       logallrefupdates = true

       symlinks = false

       ignorecase = true

[user]

       email = elite@elite.com

       name = elite

查看状态 git status

$ git status

On branch master

No commits yet

nothing to commit (create/copy files and use "git add" to track)


git add 添加文件

$ git add goot.txt

warning: LF will be replaced by CRLF in goot.txt.

The file will have its original line endings in your working directory


git commit -m ‘message’ file 提交文件

$ git commit -m 'commit my second ,modified' good.txt

warning: LF will be replaced by CRLF in good.txt.

The file will have its original line endings in your working directory

[master f6ff672] commit my second ,modified

1 file changed, 1 insertion(+)

git log 查看提交的日志

$ git log

commit 4a788b4d0359fd6acafcbf106c7ccc11b5f56692 (HEAD -> master)

Author: elite <elite@elite.com>

Date:   Sat Jun 13 19:07:51 2020 +0800

   this is third commited;

commit f6ff672d713415e680455e3a0199bdae2109816a

Author: elite <elite@elite.com>

Date:   Sat Jun 13 19:01:51 2020 +0800

   commit my second ,modified

commit 7b9336df397c8a39e3668754f9552a161e8feae7

Author: elite <elite@elite.com>

Date:   Sat Jun 13 18:59:23 2020 +0800

   this is my first commited

$ git log --pretty=oneline

$ git log --pretty=oneline

4a788b4d0359fd6acafcbf106c7ccc11b5f56692 (HEAD -> master) this is third commited;

f6ff672d713415e680455e3a0199bdae2109816a commit my second ,modified

7b9336df397c8a39e3668754f9552a161e8feae7 this is my first commited

#查看日志

$ git log --oneline

4a788b4 (HEAD -> master) this is third commited;

f6ff672 commit my second ,modified

7b9336d this is my first commited

$ git reflog

#HEAD当前版本的指针,历史记录的回退和前进

基于索引值操作 $ git reset --hard f6ff672

#回滚到某一个版本

$ git reset --hard f6ff672

HEAD is now at f6ff672 commit my second ,modified

使用^符合,只能往后退

#git reset --hard HEAD^ 回退一步

#git reset --hard HEAD^^^ 回退三步

 

`使用波浪线回退 ~n 回退n步

$ git reset --hard HEAD ~3

 

reset三个参数 作用
–soft 移动本地库head指针
–hard 在本地库移动HEAD指针 重置暂存区与工作区
–mixed 在本地库移动HEAD指针 重置暂存区


rm file 删除文件

git diff 将工作区的文件和暂存区进行比较

$ git diff

diff --git a/hello.txt b/hello.txt

index 4d15aa4..d347dab 100644

--- a/hello.txt

+++ b/hello.txt

@@ -1,3 +1,3 @@

for test delete

-dsds  #- 表示原来的内容

+dsds@@@@@ #+表示新增内容

it diff [历史版本】文件名 进行比较

分支管理

#创建分支

git branch 分支名

#查看分支

git branch -v

#切换分支

git checkout 分支名

#合并分支

第一步先切换到master

git merge 分支名

解决冲突

#不同的分支提交了修改的内容

合并出现了冲突

cat 查看冲突的内容

决定去留

git commit -m 'resolve conflict' 提交不需要添加文件名

相关文章
|
2月前
|
开发工具 git
git 常用命令
这些只是 Git 命令的一部分,Git 还有许多其他命令和选项,可根据具体需求进行深入学习和使用。熟练掌握这些命令能够帮助你更高效地管理代码版本和协作开发。
|
5月前
|
存储 开发工具 git
|
5月前
|
开发工具 git
【GIT 第二篇章】GIT常用命令
Git常用命令涵盖初始化、状态管理、提交、分支处理、远程操作等关键流程。`git init`启动本地仓库,`git clone`下载远程仓库。通过`git status`和`git diff`检查工作状态与差异。利用`git add`暂存文件,`git commit`保存更改。借助`git branch`、`git checkout`、`git merge`和`git rebase`管理分支。使用`git fetch`、`git pull`和`git push`同步远程仓库。通过`git reset`、`git revert`和`git checkout`实现版本回退。
82 0
|
1月前
|
机器学习/深度学习 Shell 网络安全
【Git】Git 命令参考手册
Git 命令参考手册的扩展部分,包含了从基础操作到高级功能的全面讲解。
55 3
|
2月前
|
缓存 Java Shell
[Git]入门及其常用命令
本文介绍了 Git 的基本概念和常用命令,包括配置、分支管理、日志查看、版本回退等。特别讲解了如何部分拉取代码、暂存代码、删除日志等特殊需求的操作。通过实例和图解,帮助读者更好地理解和使用 Git。文章强调了 Git 的细节和注意事项,适合初学者和有一定基础的开发者参考。
66 1
[Git]入门及其常用命令
|
3月前
|
开发工具 git
git学习四:常用命令总结,包括创建基本命令,分支操作,合并命令,压缩命令,回溯历史命令,拉取命令
这篇文章是关于Git常用命令的总结,包括初始化配置、基本提交、分支操作、合并、压缩历史、推送和拉取远程仓库等操作的详细说明。
161 1
git学习四:常用命令总结,包括创建基本命令,分支操作,合并命令,压缩命令,回溯历史命令,拉取命令
|
2月前
|
开发工具 git 开发者
|
2月前
|
开发工具 git 开发者
提升Git效率:掌握这5个高级命令
【10月更文挑战第17天】
79 0
|
4月前
|
存储 Linux 开发工具
掌握 Git 命令:每个开发者的必备技能
无论团队项目还是个人开发,掌握 Git 命令都是必备技能。本文介绍 Git 的基本概念与命令,如初始化仓库 (`git init`)、添加文件 (`git add`)、提交更改 (`git commit`)、检出分支 (`git checkout`)、合并分支 (`git merge`) 等,还分享了高级技巧如查看差异 (`git diff`)、撤销提交 (`git revert`)、修复合并冲突 (`git mergetool`) 和使用别名简化命令 (`git config --global alias.ci commit`)。
|
4月前
|
机器学习/深度学习 Shell 开发工具
Python使用管道执行git命令报错|4-7
Python使用管道执行git命令报错|4-7