当前位置:网站首页>我的小笔记 =》其他东东
我的小笔记 =》其他东东
2022-08-02 03:23:00 【爱唱歌的前端】
gitee相关操作
git init #初始化
git add . #将当前目录加入到git
git commit -m "first commit(提交的描述信息)" #git提交到本地版本库
git remote add origin https://gitee.com/xxxx.git #git本地库连接远程版本库,这一步会有对应输入账号和密码的操作
git push -u origin master #将文件上传到远程版本库master分支
git clone https://gitee.com/xxxx.git #获取git项目
interactive rebase in progress; onto

执行:git rebase --continueerror: remote origin already exists.

执行:git remote rm origin删除关联的origin的远程库
然后再:git remote add origin https://gitee.com/xxxxxx.git关联自己的仓库
最后git push origin master! [rejected] master -> master (fetch first)
error: failed to push some refs to ‘https://gitee.com/xiaoefen/vue3-web-worker.git’
执行:git pull --rebase origin master
然后再:git push origin master
边栏推荐
- ModuleNotFoundError No module named ‘xxx‘可能的解决方案大全
- Redis简单学习笔记
- Error in render: “TypeError: Cannot read properties of null (reading ‘0‘)“ 报错解决方案
- [Learning Records of Boxue Valley] Super summary, share with heart | Software Testing Interface Testing Basics
- @Accessors 注解详解
- parser = argparse.ArgumentParser()解析
- Monaco Editor 的基本用法
- PCL—point cloud data segmentation
- 【面经】米哈游数据开发一面二面面经
- Phospholipid-Polyethylene Glycol-Aldehyde DSPE-PEG-Aldehyde DSPE-PEG-CHO MW: 5000
猜你喜欢
随机推荐
ModuleNotFoundError No module named ‘xxx‘可能的解决方案大全
磷脂-聚乙二醇-酰肼,DSPE-PEG-Hydrazide,DSPE-PEG-HZ,MW:5000
基本运算符
IndexError: only integers, slices (`:`), ellipsis (`...`), numpy.newaxis (`None`) and integer or boo
Phospholipid-Polyethylene Glycol-Aldehyde DSPE-PEG-Aldehyde DSPE-PEG-CHO MW: 5000
mysql中如何查看表是否被锁
第一篇博客
Phospholipid-polyethylene glycol-hydrazide, DSPE-PEG-Hydrazide, DSPE-PEG-HZ, MW: 5000
Chapter 10 Clustering
远程调试、无cuDnn、自定义模块无法导入问题记录
磷脂-聚乙二醇-巯基,DSPE-PEG-Thiol,DSPE-PEG-SH,MW:5000
@Autowired详解[email protected]在static属性上的使用
Error: with open(txt_path,'r') as f: FileNotFoundError: [Errno 2] No such file or directory:
PCL—点云数据分割
STM32 触发HardFault_Handler如何查找原因
getattr() function analysis
yolov5调用ip摄像头时出现的问题
这些JS题面试时一定要答对!
@Accessors 注解详解
ModuleNotFoundError No module named 'xxx' possible solutions









