gitee简易命令行入门教程

保存一下第一次使用 gitee 的简易git代码。

来自 gitee 官网的教程,新建一个仓库,仓库会自动显示下面的命令行,而且其中的用户名,邮箱等都已经替换成了你自己的用户名和邮箱,直接复制运行就行,这一点很贴心。

简易的命令行入门教程

1、命令行进行本地 Git 全局设置(yourname = Gitee中的用户名,your@email.com = 在Gitee中绑定的邮箱):

1
2
git config --global user.name "yourname"
git config --global user.email "your@email.com"

2、命令行本地创建 Git 仓库并推送到 Gitee 远程仓库(repo_name即为Git仓库所在的文件夹名称):

1
2
3
4
5
6
7
8
mkdir repo_name
cd repo_name
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/your_enterprise_name/test_repository.git
git push -u origin master

3、命令行推送本地已有 Git 仓库到 Gitee 远程仓库(repo_name即为Git仓库所在的文件夹名称):

1
2
3
cd repo_name
git remote add origin https://gitee.com/your_enterprise_name/test_repository.git
git push -u origin master
  • 版权声明: 本博客所有文章除特别声明外,著作权归作者所有。转载请注明出处!
  • Copyrights © 2019-2024 Vincere Zhou
  • 访问人数: | 浏览次数:

请我喝杯茶吧~

支付宝
微信