git notes

作者: petsym | 来源:发表于2020-03-14 13:17 被阅读0次

title: git notes
date: 2020-03-07 01:13:12
tags:

  • 工具
  • hexo
    categories: others
    description: git tips
    typora-root-url: git-notes

今天参考 https://www.jianshu.com/p/55f11d8973f0 在github上github pages的仓库下建立了一个source分支,用来存放hexo博客的md源文件,用于备份和以后迁移设备备用。

首次备份到新的branch做法

  • 如果不在master分支,先确保切换回master分支

    git checkout master
    
  • 进入要备份的source文件夹

  • 初始化git仓库

    git init
    
  • 与远程仓库建立连接

git remote add origin git@github.com:yourname/yourname.github.io.git
  • 在本地把源代码提交到本地版本库中
git add .
git commit -m 'add hexo-blog origin files'
  • 推送到远程仓库的名为source的新分支上面
git push origin master:source

之后每次备份新的blog文件做法

先备份md文件夹

  • 进入本地带备份的source文件夹

  • 在本地把源代码提交到本地版本库中

git add .
git commit -m 'add new hexo-blog file'
  • 推送到远程仓库的名为source分支

    git push origin master:source
    

再部署静态文件

hexo g
hexo d 

相关文章

  • [git]git notes

    介绍 VCS(Version Control Systems) 版本控制是一种记录一个或若干文件内容变化,以便将来...

  • Git Notes

    When a requirement of new feature or bugfix is coming Cre...

  • Git Notes

    Cancel the version control by git git init the whole root...

  • Git Notes

    观书有会意处,题其衣裳,以记其事~ 1、拉取远程分支并创建本地分支 使用该方式会在本地新建分支branch_x,并...

  • git notes

    title: git notesdate: 2020-03-07 01:13:12tags: 工具 hexocat...

  • Notes for Studying Git

    First Lesson Compare differences for two large files in L...

  • 好玩的shell脚本

    我的总结记录文档: https://github.com/jinboxu/Shell_notes.git 1. 获...

  • Git's Notes And Records

    Author: Mikoy Date: 2018-02-04 1. The concepts of git: Gi...

  • git版本控制notes

    在进行文件,代码修改时,为了记录每次的更改以及之后重回更改前的版本,使用版本控制工具是一种很有效的方式。之前使用g...

  • Git学习记录:Notes for Codecademy

    Codecademy学习记录 Basic Git Workflow(Git工作流初探) git三大部分 编辑一份文...

网友评论

      本文标题:git notes

      本文链接:https://www.haomeiwen.com/subject/lffbshtx.html