使用git将本地代码提交到码云上去
使用git将本地代码提交到码云上去码云为开源中国基于git的代码网络托管平台,将代码托管、开发与项目管理工具融为一体。
今天第一次将自己的web项目代码上传至码云,过程中遇到一些问题,此处进行总结与过程的演示:
当我们在码云上创建好项目后,结构如图所示:
文章图片
代码开发完成之后发现代码无误之后就需要将他提交到码云上去,
首先需要找一个文件夹,
鼠标右键执行git clone
文章图片
然后再将自己代码copy进去,
【使用git将本地代码提交到码云上去】
@cxyy MINGW64 /d/学习内容/新建文件夹/springboot_activeMq (master) $ git init Reinitialized existing Git repository in D:/学习内容/新建文件夹/springboot_activeMq/.git/@cxyy MINGW64 /d/学习内容/新建文件夹/springboot_activeMq (master) $ git remote add origin https://gitee.com/chenxiufen/springboot_activeMq.git fatal: remote origin already exists.@cxyy MINGW64 /d/学习内容/新建文件夹/springboot_activeMq (master) $ git remote add origin1 https://gitee.com/chenxiufen/springboot_activeMq.git
@cxyy MINGW64 /d/学习内容/新建文件夹/springboot_activeMq (master) $ git add Nothing specified, nothing added. Maybe you wanted to say 'git add .'?
@cxyy MINGW64 /d/学习内容/新建文件夹/springboot_activeMq (master) $ git add. git: 'add.' is not a git command. See 'git --help'.The most similar command is add
按照如下命令执行就可以了,这是第一次提交,如果将代码拉到idea中操作就不是这样了
posted @ 2019-01-28 12:42 动手的程序员 阅读( ...) 评论( ...) 编辑 收藏
推荐阅读
- 由浅入深理解AOP
- 即将到手三百万
- 【译】20个更有效地使用谷歌搜索的技巧
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- 思友人
- gitlab|gitlab 通过备份还原 admin/runner 500 Internal Server Error
- iOS中的Block
- Linux下面如何查看tomcat已经使用多少线程