分布式版本控制系统Git的安装与使用

风流意气都作罢 提交于 2019-12-19 05:21:50

作业要求来源

参考链接:

https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/
http://www.runoob.com/w3cnote/git-guide.html
https://blog.csdn.net/Hanani_Jia/article/details/77950594

  • 1.下载安装配置用户名和邮箱

    • 注册GitHub账号

    • 下载安装Git Bush

    • Git Bush配置

      • 配置用户名和邮箱地址:

        git config --global user.name "username"
        git config --global user.email "email"

        查看用户名和邮箱地址:

        git config user.name
        git config user.email
  • 2.创建工作目录并通过git init命令把这个目录变成Git可以管理的仓库。

    • 在计算机上选择一个合适的位置(在这里我的位置是D:\xichen1602\xichen1602Git)

      通过git init命令把这个目录变成Git可以管理的仓库并查看目录:

  • 3.工作目录下准备文本文件,为了避免出错,用NotePad++代替操作系统自带的编辑器:

    • git status命令检查当前文件状态 :

  • 4. 组合用git addgit、 commit、git status 把文件提交到仓库。

    • git add命令把文件添加到仓库,git status 命令查看状态,git comment -m"..." 命令提交到仓库形成版本。在NotePad++里每改一次保存后,每次都通过git add上传到版本库,再git commit -m“...”操作提交到仓库,重复操作:

  • 5.练习提交三个或以上的版本:

    • git log --pretty=online命令查看版本

  • 6. 组合使用git diff、git log、git reset命令进行版本管理与回退,观察文件变化。

    • 使用git reset命令回退到某一版本,git reset --hard e7f8(版本号前几位),cat GitBushTest.txt(查看文本文件):


  • 7. 将Git仓库托管到GitHub网站上

    • 创建SSH Key。命令ssh-keygen -t rsa -C"1054244124@qq.com":

    • 登录GitHub,打开“setting”,“SSH and GPG keys”页面,点击“New SSH Key”,填上Title,在Key文本框里面粘贴id_rsa.pub文件的内容:

    • 点击右上角的“+”,选择New repository新建仓库,输入仓库名:

      该仓库的链接:

  • 8. 把本地仓库的内容推送到GitHub仓库。

    • 本地仓库与Github仓库关联命令:git remote add origin git@github.com:xichen1602/xichen1602Git.git(撤销的指令:git remote remove origin):

      推送本地仓库到Github仓库:git push -u origin master

      Github仓库:

      远程仓库地址:https://github.com/xichen1602/xichen1602Git

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!