当前位置:   article > 正文

Git和Github_git和githup

git和githup

一、Git和Github

git:可执行程序,代码版本控制工具

github:托管代码

git基本概念

四个工作区

git本地有三个工作域:工作区(working directory), 暂存区(stage/index), 资源库(repository)。如果再算上远程服务器上的git仓库(remote directory)就可以分为四个工作域。其关系如下:

  • Workspace:工作区,就是你平时存放项目代码的地方。
  • Index / Stage: 暂存区,用于临时存放你的改动,事实上它只是一个文件,保存即将提交到文件列表信息。
  • Repository: 仓库区(或版本库),就是安全存放数据的位置,这里面有你提交到所有版本的数 据。其中HEAD指向最新放入仓库的版本。
  • Remote: 远程仓库,托管代码的服务器,可以简单的认为是你项目组中的一台电脑用于远程数据交换。远程仓库的作用不仅仅是备份,还有一个重要作用是可以合并代码,从而管理不同版本的代码。

git工作的一般流程:

  1. 在工作目录中添加,修改文件
  2.  将需要进行版本管理的文件放入暂存区
  3. 将暂存区的文件提交到git仓库

文件的四种状态

  1. Untracked: 未跟踪, 此文件在文件夹中, 但并没有加入到git库, 不参与版本控制. 通过git add 状态 变为Staged.
  2. Unmodify: 文件已经入库, 未修改, 即版本库中的文件快照内容与文件夹中完全一致. 这种类型的文 件有两种去处, 如果它被修改, 而变为Modified. 如果使用git rm移出版本库, 则成为Untracked文件
  3. Modified: 文件已修改, 仅仅是修改, 并没有进行其他的操作. 这个文件也有两个去处, 通过git add可 进入暂存staged状态, 使用git checkout 则丢弃修改过,返回到unmodify状态, 这个git checkout即 从库中取出文件, 覆盖当前修改
  4. Staged: 暂存状态. 执行git commit则将修改同步到库中, 这时库中的文件和本地文件又变为一致, 文件为Unmodify状态. 执行git reset HEAD filename取消暂存,文件状态为Modified

二、git基本命令

创建本地仓库

1.创建一个目录

git init初始化空的仓库

  1. stu@stu-virtual-machine:~$ mkdir myproject
  2. stu@stu-virtual-machine:~$ cd myproject
  3. stu@stu-virtual-machine:~/myproject$ ls -a
  4. . ..
  5. stu@stu-virtual-machine:~/myproject$

2.使用git init 命令将其变为一个可以通过git管理的仓库

  1. stu@stu-virtual-machine:~/myproject$ git init
  2. 已初始化空的 Git 仓库于 /home/stu/myproject/.git/
  3. stu@stu-virtual-machine:~/myproject$ ls -a
  4. . .. .git
  5. stu@stu-virtual-machine:~/myproject$

注意事项: 第一次使用git命令提交代码之前,需要先设置用户名及邮箱,之后就不需要了:

  1. stu@stu-virtual-machine:~/myproject$ git config --global user.email
  2. "you@126.com"
  3. stu@stu-virtual-machine:~/myproject$ git config --global user.name "youname"

3.使用git add filename 添加文件到暂存区

  1. stu@stu-virtual-machine:~/myproject$ ls
  2. main.c
  3. stu@stu-virtual-machine:~/myproject$ git add main.c

使用git add添加到暂存区的文件位置说明:

在添加之前,main.c代码存放在工作区,此时仓库的状态为”NO commits yet“------使用git add main.c----->添加到暂存区------暂存区对代码进行改动后-------->放在远程仓库github

4.使用git status 查看仓库状态

  1. stu@stu-virtual-machine:~/myproject$ git status
  2. 位于分支 master
  3. 尚无提交
  4. 要提交的变更:
  5. (使用 "git rm --cached <文件>..." 以取消暂存)
  6. 新文件: main.c
  7. stu@stu-virtual-machine:~/myproject$

5.使用 git commit -m "版本描述信息" 提交版本到仓库

  1. stu@stu-virtual-machine:~/myproject$ git commit -m "创建main.c"
  2. [master (根提交) f30d135] 创建main.c
  3. 1 file changed, 1 insertion(+)
  4. create mode 100644 main.c
  5. stu@stu-virtual-machine:~/myproject$

6.使用git log查看提交的历史记录

  1. stu@stu-virtual-machine:~/myproject$ git log
  2. commit f30d135d907fb622c8e178cb1d54947c39ffa0f0 (HEAD -> master)
  3. Author: sufeng <sufeng05@126.com>
  4. Date: Thu Jun 17 11:56:38 2021 +0800
  5. 创建main.c
  6. stu@stu-virtual-machine:~/myproject$

7.使用git reflog 查看对仓库的操作日志

  1. stu@stu-virtual-machine:~/myproject$ git reflog
  2. f30d135 (HEAD -> master) HEAD@{0}: commit (initial): 创建main.c
  3. stu@stu-virtual-machine:~/myproject$

8.使用git diff HEAD 比较当前内容与最后一次提交的版本的差异(用于检查更改的代码是否进行更改,其余代码是否未被修改),如下在main.c中添加了一行内容,显示 添加的一行前面有‘+’号标识识。如果内容相同则该命令不显示输出结果。HEAD也可以省略默认就是与最近一次比较。

  1. stu@stu-virtual-machine:~/myproject$ git diff HEAD
  2. diff --git a/main.c b/main.c
  3. index 53c5fdf..fbfff34 100644
  4. --- a/main.c
  5. +++ b/main.c
  6. @@ -1 +1,2 @@
  7. #include <stdio.h>
  8. +#include <stdlib.h>
  9. stu@stu-virtual-machine:~/myproject$

9.使用git checkout filename 放弃对工作区代码的修改,用在写错了某处修改时使用。

  1. stu@stu-virtual-machine:~/myproject$ ls
  2. main.c
  3. stu@stu-virtual-machine:~/myproject$ cat main.c
  4. #include <stdio.h>
  5. stu@stu-virtual-machine:~/myproject$ vi main.c
  6. stu@stu-virtual-machine:~/myproject$ cat main.c
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. stu@stu-virtual-machine:~/myproject$ git status
  10. 位于分支 master
  11. 尚未暂存以备提交的变更:
  12. (使用 "git add <文件>..." 更新要提交的内容)
  13. (使用 "git restore <文件>..." 丢弃工作区的改动)
  14. 修改: main.c
  15. 修改尚未加入提交(使用 "git add" 和/或 "git commit -a"
  16. stu@stu-virtual-machine:~/myproject$ git checkout main.c
  17. 从索引区更新了 1 个路径
  18. stu@stu-virtual-machine:~/myproject$ cat main.c
  19. #include <stdio.h>
  20. stu@stu-virtual-machine:~/myproject$

10.使用git reset HEAD filename 从暂存区撤销

  1. stu@stu-virtual-machine:~/myproject$ ls
  2. main.c
  3. stu@stu-virtual-machine:~/myproject$ git status
  4. 位于分支 master
  5. 尚未暂存以备提交的变更:
  6. (使用 "git add <文件>..." 更新要提交的内容)
  7. (使用 "git restore <文件>..." 丢弃工作区的改动)
  8. 修改: main.c
  9. 修改尚未加入提交(使用 "git add" 和/或 "git commit -a"
  10. stu@stu-virtual-machine:~/myproject$ git add main.c
  11. stu@stu-virtual-machine:~/myproject$ git status
  12. 位于分支 master
  13. 要提交的变更:
  14. (使用 "git restore --staged <文件>..." 以取消暂存)
  15. 修改: main.c
  16. stu@stu-virtual-machine:~/myproject$ git reset HEAD main.c
  17. 重置后取消暂存的变更:
  18. M main.c
  19. stu@stu-virtual-machine:~/myproject$ git status
  20. 位于分支 master
  21. 尚未暂存以备提交的变更:
  22. (使用 "git add <文件>..." 更新要提交的内容)
  23. (使用 "git restore <文件>..." 丢弃工作区的改动)
  24. 修改: main.c
  25. 修改尚未加入提交(使用 "git add" 和/或 "git commit -a"
  26. stu@stu-virtual-machine:~/myproject$

11.使用git rm filename 删除一个文件, 此时提交到暂存区,本地的文件删除,仓库内备份的需要commit后才在版本库中删除,即git commit -m '......'

  1. stu@stu-virtual-machine:~/myproject$ ls
  2. main.c
  3. stu@stu-virtual-machine:~/myproject$ git status
  4. 位于分支 master
  5. 无文件要提交,干净的工作区
  6. stu@stu-virtual-machine:~/myproject$ git rm main.c
  7. rm 'main.c'
  8. stu@stu-virtual-machine:~/myproject$ ls
  9. stu@stu-virtual-machine:~/myproject$ git status
  10. 位于分支 master
  11. 要提交的变更:
  12. (使用 "git restore --staged <文件>..." 以取消暂存)
  13. 删除: main.c
  14. stu@stu-virtual-machine:~/myproject$ ls
  15. stu@stu-virtual-machine:~/myproject$

12.使用git reset --hard HEAD^  回退版本。

        当在版本1时执行力A命令然后得到版本2,此时回退到版本1时,当时操作的A命令就被撤销掉了。但是执行"git reset --hard 版本2的唯一编号"跳转到指定版本,此时可以回到版本2。

  1. stu@stu-virtual-machine:~/myproject$ git status
  2. 位于分支 master
  3. 无文件要提交,干净的工作区
  4. stu@stu-virtual-machine:~/myproject$ git reflog
  5. 2bc07ca (HEAD -> master) HEAD@{0}: commit: del main.c
  6. 8bb2b7b HEAD@{1}: commit: 添加一行
  7. f30d135 HEAD@{2}: commit (initial): 创建main.c
  8. stu@stu-virtual-machine:~/myproject$ ls
  9. stu@stu-virtual-machine:~/myproject$ git reset --hard HEAD^
  10. HEAD 现在位于 8bb2b7b 添加一行
  11. stu@stu-virtual-machine:~/myproject$ ls
  12. main.c
  13. stu@stu-virtual-machine:~/myproject$

三、git分支branch的操作命令

在进行多个并行作业时,通常会用到分支。

1.查看分支: git branch

  1. stu@stu-virtual-machine:~/myproject$ git branch
  2. * master
  3. stu@stu-virtual-machine:~/myproject$

2.创建分支: git branch 分支名

  1. stu@stu-virtual-machine:~/myproject$ git branch dev
  2. stu@stu-virtual-machine:~/myproject$ git branch
  3. dev
  4. * master
  5. stu@stu-virtual-machine:~/myproject$

3.切换分支: git checkout 分支名

  1. stu@stu-virtual-machine:~/myproject$ git branch
  2. dev
  3. * master
  4. stu@stu-virtual-machine:~/myproject$ git checkout dev
  5. 切换到分支 'dev'
  6. stu@stu-virtual-machine:~/myproject$ git branch
  7. * dev
  8. master
  9. stu@stu-virtual-machine:~/myproject$

4.创建并切换到该分支: git checkout -b 分支名

  1. stu@stu-virtual-machine:~/myproject$ git branch
  2. dev
  3. * master
  4. stu@stu-virtual-machine:~/myproject$ git checkout -b dev2
  5. 切换到一个新分支 'dev2'
  6. stu@stu-virtual-machine:~/myproject$ git branch
  7. dev
  8. * dev2
  9. master
  10. stu@stu-virtual-machine:~/myproject$

5.删除分支,不能删除当前所处分支,切换到其它分支再删除: git branch -d 分支名

  1. stu@stu-virtual-machine:~/myproject$ git branch
  2. dev
  3. * dev2
  4. master
  5. stu@stu-virtual-machine:~/myproject$ git checkout dev
  6. 切换到分支 'dev'
  7. stu@stu-virtual-machine:~/myproject$ git branch -d dev2
  8. 已删除分支 dev2(曾为 8bb2b7b)。
  9. stu@stu-virtual-machine:~/myproject$ git branch
  10. * dev
  11. master
  12. stu@stu-virtual-machine:~/myproject$

6.合并某个分支到当前分支: git merge 分支名 ,合并时可能产生冲突,需要解决冲突(冲突是指git无法清楚怎么合并时就需要人工参与去合并)。 有时需要禁止快速合并,可执行:git merge --no-ff -m '描述' 分支名

  1. stu@stu-virtual-machine:~/myproject$ ls
  2. main.c
  3. stu@stu-virtual-machine:~/myproject$
  4. stu@stu-virtual-machine:~/myproject$ vi main.c
  5. stu@stu-virtual-machine:~/myproject$ git branch
  6. * dev
  7. master
  8. stu@stu-virtual-machine:~/myproject$ git add main.c
  9. stu@stu-virtual-machine:~/myproject$ git status
  10. 位于分支 dev
  11. 要提交的变更:
  12. (使用 "git restore --staged <文件>..." 以取消暂存)
  13. 修改: main.c
  14. stu@stu-virtual-machine:~/myproject$ git commit -m 'dev添加main'
  15. [dev 024836e] dev添加main
  16. 1 file changed, 5 insertions(+)
  17. stu@stu-virtual-machine:~/myproject$ git status
  18. 位于分支 dev
  19. 无文件要提交,干净的工作区
  20. stu@stu-virtual-machine:~/myproject$ git branch
  21. * dev
  22. master
  23. stu@stu-virtual-machine:~/myproject$ git checkout master
  24. 切换到分支 'master'
  25. stu@stu-virtual-machine:~/myproject$ git merge dev
  26. 更新 8bb2b7b..024836e
  27. Fast-forward
  28. main.c | 5 +++++
  29. 1 file changed, 5 insertions(+)
  30. stu@stu-virtual-machine:~/myproject$ vi main.c
  31. stu@stu-virtual-machine:~/myproject$ git branch
  32. dev
  33. * master
  34. stu@stu-virtual-machine:~/myproject$

        如上代码内合并时失败(代码内部是merge函数内有fun1(),dev函数内有fun2(),此时系统就不清楚是要互相替换还是如何操作,因此就报错需要人为参与)。此时解决方案是:在合并的函数内删除掉需要替换的函数或者将两个函数都保留或者怎么样修改都行,然后对文件保存退出编译并执行新版本。

7.历史记录一行显示 : git log --pretty=oneline

  1. stu@stu-virtual-machine:~/myproject$ git log --pretty=oneline
  2. 024836e9de25b8cc120fb7cce7b2ef3fd936bbc0 (HEAD -> master, dev) dev添加main
  3. 8bb2b7b1fa23eb347c654e98821c6510cb60edb9 添加一行
  4. f30d135d907fb622c8e178cb1d54947c39ffa0f0 创建main.c
  5. stu@stu-virtual-machine:~/myproject$

8.以图表形式显示分支:git log --graph

  1. stu@stu-virtual-machine:~/myproject$ git log --graph
  2. * commit 4993413c30f1c496428f0c16b2a96bb643103ff6 (HEAD -> master)
  3. |\ Merge: 809d358 1b659bf
  4. | | Author: sufeng <sufeng05@126.com>
  5. | | Date: Thu Jun 17 14:23:44 2021 +0800
  6. | |
  7. | | 解决合并冲突
  8. | |
  9. | * commit 1b659bf4f4f2bd8752c5aa8807947507b9131f64 (dev2)
  10. | | Author: sufeng <sufeng05@126.com>
  11. | | Date: Thu Jun 17 14:20:48 2021 +0800
  12. | |
  13. | | 添加printf方法
  14. | |
  15. * | commit 809d3583025e9f61dce64687d96ff821ce826778
  16. |/ Author: sufeng <sufeng05@126.com>
  17. | Date: Thu Jun 17 14:22:03 2021 +0800
  18. |
  19. | 添加exit方法
  20. |
  21. * commit 024836e9de25b8cc120fb7cce7b2ef3fd936bbc0 (dev)
  22. | Author: sufeng <sufeng05@126.com>
  23. | Date: Thu Jun 17 14:05:32 2021 +0800
  24. |
  25. | dev添加main
  26. |
  27. * commit 8bb2b7b1fa23eb347c654e98821c6510cb60edb9
  28. | Author: sufeng <sufeng05@126.com>
  29. | Date: Thu Jun 17 12:55:56 2021 +0800

9.保护现场 git stash,当前工作区有代码修改了,是不能切换到其他分支,可以先保存现场,再切换。

        为什么需要保护现场?

        因为:最近版本的代码会覆盖掉本地原先的的代码,如果程序员在本地写一半的代码还未提交到版本库时(版本库的代码必须是可以编译能通过执行的代码,而程序员很可能只写了一代点点东西),版本库新代码存在覆盖的可能性,因此系统就不允许任意切换分支。

  1. stu@stu-virtual-machine:~/myproject$ git status
  2. 位于分支 master
  3. 无文件要提交,干净的工作区
  4. stu@stu-virtual-machine:~/myproject$ vi main.c
  5. stu@stu-virtual-machine:~/myproject$ git status
  6. 位于分支 master
  7. 尚未暂存以备提交的变更:
  8. (使用 "git add <文件>..." 更新要提交的内容)
  9. (使用 "git restore <文件>..." 丢弃工作区的改动)
  10. 修改: main.c
  11. 修改尚未加入提交(使用 "git add" 和/或 "git commit -a"
  12. stu@stu-virtual-machine:~/myproject$ git branch dev
  13. fatal: 一个分支名 'dev' 已经存在。
  14. stu@stu-virtual-machine:~/myproject$ git checkout dev
  15. error: 您对下列文件的本地修改将被检出操作覆盖:
  16. main.c
  17. 请在切换分支前提交或贮藏您的修改。
  18. 正在终止
  19. stu@stu-virtual-machine:~/myproject$ git stash
  20. 保存工作目录和索引状态 WIP on master: 4993413 解决合并冲突
  21. stu@stu-virtual-machine:~/myproject$ git status
  22. 位于分支 master
  23. 无文件要提交,干净的工作区
  24. stu@stu-virtual-machine:~/myproject$ git checkout dev
  25. 切换到分支 'dev'
  26. stu@stu-virtual-machine:~/myproject$

10.列出所有保存的现场信息 git stash list

  1. stu@stu-virtual-machine:~/myproject$ git stash list
  2. stash@{0}: WIP on master: 4993413 解决合并冲突
  3. stu@stu-virtual-machine:~/myproject$ git branch
  4. * dev
  5. dev2
  6. master
  7. stu@stu-virtual-machine:~/myproject$ vi main.c
  8. stu@stu-virtual-machine:~/myproject$ git stash
  9. 保存工作目录和索引状态 WIP on dev: c6a7375 定义a,b
  10. stu@stu-virtual-machine:~/myproject$ git stash list
  11. stash@{0}: WIP on dev: c6a7375 定义a,b
  12. stash@{1}: WIP on master: 4993413 解决合并冲突
  13. stu@stu-virtual-machine:~/myproject$

11.取出某次的现场信息,继续工作 :git stash pop "stash@{1}" ,默认是最近一次,如果有多个现场,也可以加上编号"stash@{1}"指定获取某一个。不同分支的现场,应该回到对应分支再获取,否则会自动合并现场到当前分支的工作区

  1. stu@stu-virtual-machine:~/myproject$ git stash list
  2. stash@{0}: WIP on dev: c6a7375 定义a,b
  3. stash@{1}: WIP on master: 4993413 解决合并冲突
  4. stu@stu-virtual-machine:~/myproject$ ls
  5. main.c
  6. stu@stu-virtual-machine:~/myproject$ git checkout master
  7. 切换到分支 'master'
  8. stu@stu-virtual-machine:~/myproject$ ls
  9. main.c
  10. stu@stu-virtual-machine:~/myproject$ git branch
  11. dev
  12. dev2
  13. * master
  14. stu@stu-virtual-machine:~/myproject$ git stash pop stash@{1}
  15. 位于分支 master
  16. 尚未暂存以备提交的变更:
  17. (使用 "git add <文件>..." 更新要提交的内容)
  18. (使用 "git restore <文件>..." 丢弃工作区的改动)
  19. 修改: main.c
  20. 修改尚未加入提交(使用 "git add" 和/或 "git commit -a"
  21. 丢弃了 stash@{1}(b553dce6fed8f60702474db1fa004bebbd13126a)
  22. stu@stu-virtual-machine:~/myproject$ git stash list
  23. stash@{0}: WIP on dev: c6a7375 定义a,b
  24. stu@stu-virtual-machine:~/myproject$

5、远程仓库操作

1. 生成通信密钥:ssh-keygen -t rsa -C "su@126.com" ,生成的公钥在/home/stu/.ssh/下,如下:

  1. stu@stu-virtual-machine:~/myproject$ ssh-keygen -t rsa -C "su****@126.com"
  2. Generating public/private rsa key pair.
  3. Enter file in which to save the key (/home/stu/.ssh/id_rsa):
  4. Enter passphrase (empty for no passphrase):
  5. Enter same passphrase again:
  6. Your identification has been saved in /home/stu/.ssh/id_rsa
  7. Your public key has been saved in /home/stu/.ssh/id_rsa.pub
  8. The key fingerprint is:
  9. SHA256:QFRjZabbzQadfEYfvGIanZbRkWdYSLpv70iSgbRMFr4 su****@126.com
  10. The key's randomart image is:
  11. +---[RSA 3072]----+
  12. | .o.+.= .=*+|
  13. | . . * + =o=+|
  14. | . . * * *.+|
  15. | . B O @ . |
  16. | S E @ . |
  17. | o + |
  18. | o + |
  19. | + o |
  20. | ..o|
  21. +----[SHA256]-----+
  22. stu@stu-virtual-machine:~/myproject$

注意:在同一个githu/gitee内,一个公钥不能出现在两个账号中。

2. 测试与github或者gitee(码云)有没有连通:

测试github 的命令 :ssh -T git@github.com

  1. tu@stu-virtual-machine:~/myproject$ ssh -T git@github.com
  2. Warning: Permanently added the RSA host key for IP address '52.74.223.119'
  3. to the list of known hosts.
  4. Hi sufeng05! You've successfully authenticated, but GitHub does not provide
  5. shell access.
  6. stu@stu-virtual-machine:~/myproject$

测试gitee 也就是码云的命令 :

  1. stu@stu-virtual-machine:~/myproject$ ssh -T git@gitee.com
  2. Hi sufeng! You've successfully authenticated, but GITEE.COM does not provide
  3. shell access.
  4. stu@stu-virtual-machine:~/myproject$

3. 克隆项目:git clone 项目地址

4. 提交分支到远程仓库:git push origin 分支名

5. 提交分支到远程仓库,并跟踪分支 :git push -u origin 分支名

6. 拉取远程服务器上的分支更新到本地 :git pull origin 分支名

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/人工智能uu/article/detail/996580
推荐阅读
相关标签
  

闽ICP备14008679号