We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
如果是根据 lab1 的步骤来配置Java环境的,那么电脑里应该已经安装好了 Git。
打开命令行并输入git,如果输出如下图,则已经配好 Git 环境。
如果Git环境有问题,参考 lab1 重新配置。
New Repository
Create repository
在项目根目录文件夹中打开命令行
依次运行以下指令,注意修改为自己的名字和邮箱
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"
git remote add origin https://github.com/[your-repository].git git push -u origin master
注:Git 和 GitHub 是不同的,Git 是版本控制软件,GitHub 是代码托管平台。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
安装Git
如果是根据 lab1 的步骤来配置Java环境的,那么电脑里应该已经安装好了 Git。
打开命令行并输入git,如果输出如下图,则已经配好 Git 环境。
如果Git环境有问题,参考 lab1 重新配置。
在GitHub中创建仓库
New Repository
Create repository
创建本地 Git 仓库
在项目根目录文件夹中打开命令行
依次运行以下指令,注意修改为自己的名字和邮箱
上传至 GitHub 远程仓库
学习使用 Git
注:Git 和 GitHub 是不同的,Git 是版本控制软件,GitHub 是代码托管平台。
The text was updated successfully, but these errors were encountered: