Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

上传代码至GitHub的方法介绍 #6

Open
lfs1102 opened this issue Nov 8, 2016 · 0 comments
Open

上传代码至GitHub的方法介绍 #6

lfs1102 opened this issue Nov 8, 2016 · 0 comments
Labels

Comments

@lfs1102
Copy link
Member

lfs1102 commented Nov 8, 2016

安装Git

如果是根据 lab1 的步骤来配置Java环境的,那么电脑里应该已经安装好了 Git。

打开命令行并输入git,如果输出如下图,则已经配好 Git 环境。

如果Git环境有问题,参考 lab1 重新配置。

在GitHub中创建仓库

  1. 登录 GitHub
  2. 点击首页右下方的绿色按钮New Repository
  3. 输入 Repository Name,并点击绿色按钮Create repository
  4. 关注新页面中类似下图中的命令:

创建本地 Git 仓库

  1. 在项目根目录文件夹中打开命令行

  2. 依次运行以下指令,注意修改为自己的名字和邮箱

echo "# Project1" >> README.md
git init
git config user.name "[your-name]"
git config user.email "[[email protected]]"
git add *
git commit -m "first commit"

上传至 GitHub 远程仓库

  1. 依次运行以下指令,注意修改地址为自己仓库的地址
git remote add origin https://github.com/[your-repository].git
git push -u origin master
  1. 最后一步可能要求输入用户名密码,输入后即可上传代码。
  2. 刷新 GitHub 仓库页面,确认PJ已经上传好。

学习使用 Git

  1. 学习 Git 的使用,可以参考https://github.com/geeeeeeeeek/git-recipes/wiki
  2. 通过 GitHub 图形化界面来上传并管理代码,参考https://guides.github.com/introduction/getting-your-project-on-github/#desktop

注:Git 和 GitHub 是不同的,Git 是版本控制软件,GitHub 是代码托管平台。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant