学习使用github,基本理解了Git的原理
记录一下过程,留做备忘
1.安装好git后,需要针对github的设置:
$ git config --global user.name "Firstname Lastname"
The name should be your actual name, not your GitHub username.
Sets the name of the user for all git instances on the system
$ git config --global user.email "your_email@youremail.com"
Sets the email of the user for all git instances on the system
$ git config --global github.user username
Sets the GitHub username for all git instances on the system
$ git config --global github.token 0123456789yourf0123456789token
Sets the GitHub token for all git instances on the system
$ git config --list 可以查看config的所有配置项
详细过程:http://help.github.com/linux-set-up-git/
2.新建Repository
在github中新建一个repository,记住名字
$ mkdir ~/Hello-World
Creates a directory for your project called "Hello-World" in your user directory
$ cd ~/Hello-World
Changes the current working directory to your newly created directory
$ git init
Sets up the necessary Git files
$ touch README
本地提交
$ git add README
Stages your README file, adding it to the list of files to be committed
$ git commit -m 'first commit'
管理远程仓储库
真正放入github中
$ git remote add origin git@github.com:username/Hello-World.git
Sets the origin for the Hello-World repo
$ git push origin master
要查看当前配置有哪些远程仓库,可以用 git remote 命令,它会列出每个远程库的简短名字。在克隆完某个项目后,至少可以看到一个名为 origin 的远程库,Git 默认使用这个名字来标识你所克隆的原始仓库
详细:http://help.github.com/create-a-repo/
一些关于git的教程:
http://www.linuxsir.org/main/doc/git/gittutorcn.htm
http://progit.org/book/zh/ch2-5.html
http://neverloser.iteye.com/blog/1090244
分享到:
相关推荐
FastGitHub是一个旨在提高用户使用GitHub的效率和便利性的工具。对于许多开发者和程序员来说,GitHub是一个非常重要的代码托管平台,他们需要频繁地浏览、提交和管理代码。然而,使用GitHub的官方网站进行这些操作...
Git 程序操作使用 GitHub 教程分享 基于 Git 程序的操作使用 GitHub 教程分享是新手小白学习的必备教程,本教程将详细讲解 Git 安装使用、GitHub 登录、拉取代码等操作步骤。 一、Git 安装 Git 安装是使用 GitHub...
Visual Studio中使用GitHub 来提交版本,开发技术中很有用。
使用 Github Codespaces 同步镜像到ACR/自建仓库
使用github搭建的个人博客
学习使用github工具
GitHub:使用GitHub进行项目协作.docx
加入GitHub是使用这个平台的第一步。用户需要注册一个账户,并可以在此基础上开始自己的项目托管。创建项目仓库(repository)是第一步,之后用户可以将本地的Git仓库推送到GitHub上,或者从GitHub上克隆(clone)...
GitHub:跨平台使用GitHub Desktop教程.docx
GitHub入门指南:一步一步教你使用GitHub
使用GitHubPages发布项目.docx
使用github操作redis步骤到 github.com 注册账号到https://desktop.github.com/ 下载github桌面软件打开git
如何使用github,简单易懂,适合第一次使用github的同学,之前不知道怎么回事积分设置很高,已经下调到1积分,希望大家能学习到
在VS Code中开始使用GitHub Copilot
使用GitHub创建Hello World存储库
如何使用GitHub API 要使用GitHub API,您必须知道github API端点。 这是GitHub提供的API端点,它允许我们以JSON格式返回指定用户的存储库。 依赖 GitHub API 步骤1: 我们将设置一个XMLHttpRequest ,它允许...
本文来自infoq,本文主要介绍了如何一步一步对ssh方法使用GitHub以及配置GitHub,希望对您的学习有所帮助。 1、首先需要有一个GitHub账号,这个自己搞定。2、在GitHub首页,点击Newrepository(创建新仓库)3、填写...
这份"GitHub 使用指南 官方中文"是 GitHub 官方提供的帮助文档,旨在帮助中文用户更好地理解和使用 GitHub。 一、GitHub 基础概念 1. **仓库(Repository)**:在 GitHub 上,你的项目就是一个仓库,它包含了所有的...
使GitHub开发人员能够使用GitHubActions部署到AzureFunctionApps___下载.zip
【代码托管】使用Github的详细步骤。你还在愁那些英文,你还在用SVN?out啦,github,谁用谁知道!!!