Git-往返github和本地

Posted CodingSwallow

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git-往返github和本地相关的知识,希望对你有一定的参考价值。

将GitHub仓库Test弄到本地

  • 本地新建文件夹Test
  • 右击运行gitbash
  • 在gitbash中输入git init
  • 在github 仓库选择clone or download
  • 复制链接https://github.com/xxx/xxx.git
  • 在gitbash中输入git clone https://github.com/xxx/xxx.git

将本地文件夹上传到GitHub

  • github中新建仓库NewRepo
  • 在本地文件夹Test中右击选择gitbash,输入git init
  • git status(可有可无)
  • git add .
    git status(可有可无)
  • git commit -m ‘description of this commit‘
  • git status(可有可无)
  • 从github仓库NewRepo点击clone or download,复制链接
  • git remote add origin https://github.com/xxx/xxx.git
  • git push -u origin master

以上是关于Git-往返github和本地的主要内容,如果未能解决你的问题,请参考以下文章

Git与GitHub(利用git上传本地文件到GitHub上面)

如何在本地环境配置github

「git」如何删除github上的文件但保留在本地

使用git上传本地项目到GitHub上和更新

使用git和github上传本地项目的方法

git上传本地项目到github