# dfusion **Repository Path**: numerical_aggregation_research/dfusion ## Basic Information - **Project Name**: dfusion - **Description**: 数聚工研算法部代码管理工作流程与注意事项 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-05-30 - **Last Updated**: 2021-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 1 简介 数聚工研算法部代码管理工作流程与注意事项 --- 平台:coding企业版,coding个人版 说明:企业版测试,后期如果收费需转移至码云、gitlab或github # 2 注册coding ## 个人版 注册 https://dev.tencent.com/ ## 企业版 接受邀请 [访问链接加入我的团队「ehealth」,一起体验 CODING 企业级研发管理协作吧](https://ehealth.coding.net/invite?key=031d52f5e7bbe98c6c32) 管理面板 https://ehealth.coding.net/user/projects # 3 提交步骤 ## 3.1 创建自己的项目 - 企业版直接创建 - 从个人版里导入 ## 3.2 配置git的公钥 ```git mkdir ~/.ssh git config --global user.name "your Account" git config --global user.email "your email@163.com" ssh-keygen -t rsa -C "your email@163.com" linux文件夹:~/.ssh win文件夹:C:\Users\当前用户\.ssh 文件夹中 id_rsa.pub是公钥 到个人信息->SSH公钥中配置公钥 ``` # 3.3 初始化已存在的仓库 ```shell cd existing_folder git init git remote add origin git@git.com:ppp.git git add . git commit -m first git push -u origin master ``` # 3.4 GitHub Desktop [GitHub Desktop图文教程](https://www.jianshu.com/p/a6fc842f501d) # 3.5 改变项目远程仓库 ## 直接命令修改 ```shell git remote set-url origin [仓库] ``` ## 命令,先删除后设新地址 ```shell git remote rm origin git remote add origin [仓库] ``` ## 操作 修改完成之后不能直接在github desktop上提交,需要现在命令行中提交 ```shell git push origin master ``` ## 直接修改配置文件 文件位置:git/config config ```shell [core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true [gui] wmstate = normal geometry = 841x483+225+101 189 218 [remote "origin"] url = git@github.com:zengmianhui/android_project.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master ```