$ssh-keygen -t rsa -C "[email protected]" // 自己的邮箱地址
// 获取公钥 id_rsa.pub
// 在Github个人设置中将 id_rsa.pub 的内容粘贴到 ssh-key 中
// 创建一个文件夹用来存放远端仓库
$mkdir FOLDER // 此文件夹可在任意位置创建,不建议放在 C 盘
$git config --global user.name "your Name"
$git config --global user.email "[email protected]"
$ssh -T [email protected] // 登录 github 测试是否配置正确,正确的提示 successful
$git remote add origin [email protected]:316Team/316-Contest.git // 添加远程仓库
$git pull orgin 316Team // 拉取远程仓库的更新到本地仓库
// 如果 git pull orgin 316Team 拉取不到任何东西,则可以使用克隆到之前所创建的文件夹下
// 进入到创建好的文件夹下
$git clone https://github.com/316Team/316-Contest
$git add * // 添加所有文件
$git commit -m "update" // 为添加的文件打上 "update" 这个标签
$git push -u orgin 316Team // 上传本地仓库到远程仓库
-
Notifications
You must be signed in to change notification settings - Fork 6
316Team/316-Contest
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published