GithubHelp home page GithubHelp logo

typora's Introduction

Typora

my notes
提交指令: https://blog.csdn.net/qq_39588003/article/details/115670602
23.9.17:
之前复制的图片都在c盘,用typora替换功能改的路径,不知道为啥打开有的图片无了,随缘~~

要提交本地仓库的更改到GitHub仓库,你可以按照以下步骤进行操作:
1.确保本地仓库与GitHub仓库同步:
在你的本地仓库目录中打开终端或命令行工具。
运行 git pull origin main(假设你的GitHub主分支是main,如果是master或其他分支,请相应地替换)。这将拉取GitHub仓库上的最新更改并合并到你的本地分支。
2.添加更改到暂存区:
使用 git add 命令将你的更改添加到Git的暂存区。你可以通过以下命令添加所有更改:
git add *
或者,如果你只想添加特定文件或文件夹,可以使用:
git add <文件或文件夹名称>
3.提交更改:
使用 git commit 命令提交你的更改并添加一个提交消息:
git commit -m "描述你的更改的信息"
4.推送更改到GitHub:
使用 git push 命令将你的本地更改推送到GitHub仓库:
git push origin main
同样,请根据你的GitHub主分支的名称进行相应的替换。
5.验证更改:
访问GitHub仓库的网页界面,确保你的更改已成功推送到GitHub仓库。
现在,你的本地更改已提交到GitHub仓库,并且与GitHub上的仓库同步。如果你在GitHub仓库上创建了一个新的文件夹,或者修改了已存在的文件,这些更改应该反映在你的GitHub仓库中。

+可能itzy节点断开了

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.