上传代码到gitee操作

本文涉及的产品
容器服务 Serverless 版 ACK Serverless,317元额度 多规格
容器服务 Serverless 版 ACK Serverless,952元额度 多规格
简介: 上传代码到gitee操作

一、查看本地仓库状态

1.查看本地仓库状态

[root@k8s-master rege_git]# git log --oneline 
21b8da9 (HEAD -> master, tag: V1.0, origin/master) 7.0-master hebing file xiaowu.txt
971127e 6.0-mster create a xiaowu.txt && xiaowu 6666
8f95061 (origin/xiaowu, xiaowu) 5.0-xiaowu create a xiaowu.txt
6a28554 4.0-lisi crate file lisi.txt
2d7bee4 2.0 create a stash.txt
ebc7eb6 1.0-create the file

2.查看本地工作区状态

[root@k8s-master rege_git]# git status
On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean

二、Git 全局设置

root@k8s gitlab]# useradd zhangsan
[root@k8s gitlab]# passwd zhangsan 
Changing password for user zhangsan.
New password: 
BAD PASSWORD: The password fails the dictionary check - it is too simplistic/systematic
Retype new password: 
passwd: all authentication tokens updated successfully.
[root@k8s gitlab]# su - zhangsan

三、无本地仓库和本地代码时

mkdir test
cd test
git init 
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin git@gitee.com:zhangsan/test.git
git push -u origin "master"

四、已有本地git仓库时

cd existing_git_repo   # 进入本地git仓库
git remote add origin git@gitee.com:zhangsan/test.git    # 连接到远程仓库
git push -u origin "master"  #上传主分支代码
git push -u origin --all   #上传全部代码
相关实践学习
通过Ingress进行灰度发布
本场景您将运行一个简单的应用,部署一个新的应用用于新的发布,并通过Ingress能力实现灰度发布。
容器应用与集群管理
欢迎来到《容器应用与集群管理》课程,本课程是“云原生容器Clouder认证“系列中的第二阶段。课程将向您介绍与容器集群相关的概念和技术,这些概念和技术可以帮助您了解阿里云容器服务ACK/ACK Serverless的使用。同时,本课程也会向您介绍可以采取的工具、方法和可操作步骤,以帮助您了解如何基于容器服务ACK Serverless构建和管理企业级应用。 学习完本课程后,您将能够: 掌握容器集群、容器编排的基本概念 掌握Kubernetes的基础概念及核心思想 掌握阿里云容器服务ACK/ACK Serverless概念及使用方法 基于容器服务ACK Serverless搭建和管理企业级网站应用
相关文章
|
27天前
|
弹性计算 监控 安全
在Gitee的开源项目部署上阿里云并发布部署脚本到Gitee代码仓库
在Gitee的开源项目部署上阿里云并发布部署脚本到Gitee代码仓库
55 0
|
4月前
|
开发工具 数据安全/隐私保护 git
gitee 创建代码仓库,并提交本地代码
gitee 创建代码仓库,并提交本地代码
217 6
|
4月前
|
弹性计算 Serverless 持续交付
聊聊如何把项目从Gitee部署到阿里云上
【7月更文挑战第11天】聊聊如何把项目从Gitee部署到阿里云上
124 1
|
5月前
|
Shell 开发工具 git
如何使用git上传代码github仓库
如何使用git上传代码github仓库
|
6月前
|
Shell 开发工具 git
如何将项目上传到Gitee上
如何将项目上传到Gitee上
155 0
|
开发工具 git
搭建多个远程仓库,将代码同时提交Github、Gitee
搭建多个远程仓库,将代码同时提交Github、Gitee
108 0
|
6月前
|
Shell 网络安全 开发工具
上传代码到gitee
上传代码到gitee
68 0
|
开发工具 git
将本地项目上传gitee实战
将本地项目上传gitee实战
164 0
|
开发工具 git
gitee上传本地项目
1.Gitee上创建仓库 2.复制仓库地址 3.本地项目进行git初始化 4.本地项目与远程仓库关联 5.最后提交代码
175 0
gitee上传本地项目
|
Shell 网络安全 开发工具
上传代码至Gitee
上传代码至Gitee
131 0
上传代码至Gitee