新手使用git(亲测可用)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新手使用git(亲测可用)相关的知识,希望对你有一定的参考价值。

  1. 下载git

    https://git-scm.com/downloads

    技术分享

  2. 下载安装

    技术分享

    一路回车

  3. 安装好之后,到git的安装目录,打开git-bash.exe

    技术分享

  4. 输入命令行

  5. 首先进入你要创建仓库的目录

    初始化一个Git仓库,使用git init命令。

    添加文件到Git仓库,分两步:

    第一步,使用命令git add <file>,注意,可反复多次使用,添加多个文件;

    第二步,使用命令git commit,完成。

  6. 设置  git config --global user.email "[email protected]"

  7. 同样 的设置 git config --global user.name "example"

  8. git输入命令ssh-keygen -t rsa -C "[email protected]"

  9. windows下在user/用户名/里面找到.ssh文件夹 复制id_rsa.pub内容到github,登陆GitHub,打开"Account settings","SSH Keys"页面:然后,点"Add SSH Key",填上任意Title,在Key文本框里粘贴 id_rsa.pub 文件里面的所有内容,配置好ssh后之后

  10. 添加后,在终端(Terminal)中输入

  11. ssh -T [email protected]
  12. 若返回

  13. Welcome to [email protected], yourname!
  14. 则证明添加成功。

  15. 接下来总结一下步骤:

  16. 1、在github上创建项目

    2、使用git clone https://github.com/xxxxxxx/xxxxx.git克隆到本地

    3、编辑项目

    4、git add . (将改动添加到暂存区)

    5、git commit -m "提交说明"

    6、git push origin master 将本地更改推送到远程master分支。

    这样你就完成了向远程仓库的推送。

  17. 如果在github的remote上已经有了文件,会出现错误。此时应当先pull一下,即:

  18. git pull origin master
  19. 然后再进行:

  20. git push origin master


以上是关于新手使用git(亲测可用)的主要内容,如果未能解决你的问题,请参考以下文章

mask_rcnn(Keras+TensorFlow)环境搭建_新手向(毕业设计使用,亲测可用)

在云服务器上搭建hexo博客(亲测可用)

如何管理在每个 git 版本中添加私有代码片段?

Windows10安装pycocotools方法,亲测可用!

[亲测可用] PXE无人值守自动装机

从一个git仓库迁移代码到另一个git仓库(亲测有效版)(转)