赞
踩
1、简易的命令行入门教程:
Git 全局设置:
git config --global user.name "gitee用户名"
git config --global user.email "邮箱"
创建 git 仓库:
mkdir devops
cd devops
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin git@gitee.com:仓库名
git push -u origin "master"
已有仓库?
cd existing_git_repo
git remote add origin git@gitee.com:仓库名
git push -u origin "master"
2、使用vscode提交代码
点击提交按钮下拉选择提交
填写提交信息,然后点击最右侧的勾
点击同步更改
即可将代码提交到仓库
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。