当前位置: 首页 > news >正文

中国能源建设集团有限公司总部seo核心技术排名

中国能源建设集团有限公司总部,seo核心技术排名,网站建设的工作人员,服务哪家好网站制作1 git介绍和安装 2 git,github,gitlab,gitee介绍 3 git工作流程 4 git常用命令 5 git忽略文件 1 git介绍和安装 首页功能写完了---》正常应该提交到版本仓库---》大家都能看到这个---》 运维应该把现在这个项目部署到测试环境中---》测试…

1 git介绍和安装

2 git,github,gitlab,gitee介绍

3 git工作流程

4 git常用命令

5 git忽略文件

1 git介绍和安装

首页功能写完了---》正常应该提交到版本仓库---》大家都能看到这个---》
运维应该把现在这个项目部署到测试环境中---》测试开始测试---》客户可以看到目前做的情况-需要有版本仓库,管理我们的代码-svn:老,公司基本不用-git:比较流行,做代码管理-注意:git 能干什么?完成 协同开发(多人一起开发) 项目,帮助程序员整合代码1 帮助开发者合并开发的代码2 如果出现冲突代码的合并,会提示后提交合并代码的开发者,让其解决冲突3 做版本管理--》可以把代码退回到某个版本-安装git-官方下载地址:https://git-scm.com/-安装:一路下一步,都选默认-验证安装:1 在cmd中输入:git -v2 在任意路径点右键:看到 git gui here:在此处打开一个git 图形化界面git bash here:在此处打开一个命令窗口

2 git,github,gitlab,gitee介绍

参考博客:https://www.cnblogs.com/liuqingzheng/p/15328319.htmlgit : 软件,做版本管理和代码合并,它有些命令
github:网站,远程代码仓库,全球最大的开源代码托管网站,使用git的命令来上传下载代码
gitee:网站,远程代码仓库,国内最大的开源代码托管网站,使用git的命令来上传下载代码
gitlab:公司内部搭建的代码托管平台,远程代码仓库,网站,使用git的命令来上传下载代码

3 git工作流程

1 工作区
2 暂存区
3 版本库# git 就是对文件进行管理---》代码也是文件

在这里插入图片描述

4 git常用命令

1 git init   # 初始化当前文件夹作为仓库git init lqz # 初始化当前文件夹下lqz作为仓库2 git status  # 查看当前仓库状态-红色:仓库中新增了,或修改了某些文件,还没有提交到暂存区-绿色:在暂存区有变化,还没有提交到版本库
3 git add 文件名 -git add . # 把当前所有变更都提交到暂存区-把工作区变更,提交到暂存区了-由红变绿了4 设置用户(在本机就设置一次全局即可---》后期使用远程仓库,可以区分是谁提交了代码)-局部设置(只针对于当前仓库)git config user.name 'xxx@qq.com'git config user.email 'xxx'-全局设置(所有仓库)git config --global user.name 'xxx'git config --global user.email 'xxx@qq.com'5 git commit -m '注释'  # 把暂存区所有内容,提交到版本库,被版本管理起来,以后可以回退,查看6 查看版本记录git loggit reflog7 了解git checkout .  # 把工作区变更删除git reset HEAD  # 把暂存区,拉回到工作区git reset --soft 23e9e095 # 版本号是上一个版本,把版本库内容拉回到暂存区git reset --mix b23875   # 把版本库内容拉回到工作区,变红8 切换版本git reset --hard  e5fff5fe489 只要被版本管理了(一定能要提交到版本库),以后无论如何操作,都能再退回到某个位置

5 git忽略文件

如果一个文件夹被git管理了,所有文件都会被管理,所有文件发生变化,都会变红。
在一个文件夹中,可能有些文件,或文件不想被git管理,这时候需要设置过滤文件。-使用方式-1 在仓库目录下(其它目录下不要有),新建一个文件:.gitignore-2 在里面写忽略文件或文件夹""" 过滤文件内容文件或文件夹名:代表所有目录下的同名文件或文件夹都被过滤/文件或文件夹名:代表仓库根目录下的文件或文件夹被过滤eg:a.txt:项目中所有a.txt文件和文件夹都会被过滤/a.txt:项目中只有根目录下a.txt文件和文件夹会被过滤/b/a.txt:项目中只有根目录下的b文件夹下的a.txt文件和文件夹会被过滤*x*:名字中有一个x的都会被过滤(*代表0~n个任意字符)空文件夹不会被提交,空包会被提交,包可以被提交(包中有一个init空文件)"""-忽略文件,在一开始就要忽略,如果已经被版本管理了,再忽略就没用了-如果之前没管,已经提交了删除---》提交到版本库---》再在忽略文件中加入-咱们项目的忽略文件.idealogs/*.logscripts__pycache__*.pyc-记住:迁移记录文件是否提交---》建议不提交**/migrations/*.py  # 忽略迁移记录!**/migrations/__init__.py #不不忽略 __init__.py

文章转载自:
http://dinncosomnus.ssfq.cn
http://dinncomoneybag.ssfq.cn
http://dinncoaerostat.ssfq.cn
http://dinncoprimipara.ssfq.cn
http://dinnconisei.ssfq.cn
http://dinncopfc.ssfq.cn
http://dinncopandowdy.ssfq.cn
http://dinncokilogrammetre.ssfq.cn
http://dinncotokonoma.ssfq.cn
http://dinncoletterman.ssfq.cn
http://dinncosiderophilin.ssfq.cn
http://dinnconorthwestward.ssfq.cn
http://dinncokingside.ssfq.cn
http://dinncoeyer.ssfq.cn
http://dinncophototonus.ssfq.cn
http://dinncocheeseburger.ssfq.cn
http://dinncozoolatrous.ssfq.cn
http://dinncopneumectomy.ssfq.cn
http://dinncodickens.ssfq.cn
http://dinncohough.ssfq.cn
http://dinncotoff.ssfq.cn
http://dinncowrathy.ssfq.cn
http://dinncophotogene.ssfq.cn
http://dinncoprussianise.ssfq.cn
http://dinncoequid.ssfq.cn
http://dinncotracery.ssfq.cn
http://dinncopervasion.ssfq.cn
http://dinncocytogenetics.ssfq.cn
http://dinncothalassocrat.ssfq.cn
http://dinncocognoscente.ssfq.cn
http://dinncomartially.ssfq.cn
http://dinncostripy.ssfq.cn
http://dinncorous.ssfq.cn
http://dinncotung.ssfq.cn
http://dinncocamaraderie.ssfq.cn
http://dinncoexcusably.ssfq.cn
http://dinncotetramorphic.ssfq.cn
http://dinncoorthoepy.ssfq.cn
http://dinncocheckgate.ssfq.cn
http://dinncodiphthongia.ssfq.cn
http://dinncosaveable.ssfq.cn
http://dinncoruefully.ssfq.cn
http://dinncositula.ssfq.cn
http://dinncodiocesan.ssfq.cn
http://dinncoultranationalism.ssfq.cn
http://dinncopasseriform.ssfq.cn
http://dinncoclassific.ssfq.cn
http://dinncofabricant.ssfq.cn
http://dinncounavailable.ssfq.cn
http://dinncoprefabrication.ssfq.cn
http://dinncomelodramatise.ssfq.cn
http://dinncofogey.ssfq.cn
http://dinncoresinoid.ssfq.cn
http://dinncononproletarian.ssfq.cn
http://dinncomethaemoglobin.ssfq.cn
http://dinncomarguerite.ssfq.cn
http://dinncohomework.ssfq.cn
http://dinncorightie.ssfq.cn
http://dinncotactician.ssfq.cn
http://dinncoaweather.ssfq.cn
http://dinncolicensor.ssfq.cn
http://dinncomorphotactics.ssfq.cn
http://dinncoexperiment.ssfq.cn
http://dinncoheishe.ssfq.cn
http://dinncoforeoath.ssfq.cn
http://dinncobonkers.ssfq.cn
http://dinncointerdigitate.ssfq.cn
http://dinncojim.ssfq.cn
http://dinncolieu.ssfq.cn
http://dinncoswiss.ssfq.cn
http://dinncoassailable.ssfq.cn
http://dinncodynamometer.ssfq.cn
http://dinncoinsectivization.ssfq.cn
http://dinncococozelle.ssfq.cn
http://dinncocandela.ssfq.cn
http://dinncohandicraftsman.ssfq.cn
http://dinncoanatole.ssfq.cn
http://dinncoheaven.ssfq.cn
http://dinncopacifism.ssfq.cn
http://dinncoamicheme.ssfq.cn
http://dinncounregarded.ssfq.cn
http://dinncophokomelia.ssfq.cn
http://dinncobarathea.ssfq.cn
http://dinncoelyseeology.ssfq.cn
http://dinncoplumb.ssfq.cn
http://dinncocompliant.ssfq.cn
http://dinncoglorified.ssfq.cn
http://dinncoantiapartheid.ssfq.cn
http://dinncosophistication.ssfq.cn
http://dinncopolyspermous.ssfq.cn
http://dinncomethodic.ssfq.cn
http://dinncotallowy.ssfq.cn
http://dinncowallace.ssfq.cn
http://dinncoacrolein.ssfq.cn
http://dinncounpin.ssfq.cn
http://dinncounfitting.ssfq.cn
http://dinncoharvard.ssfq.cn
http://dinncolyrist.ssfq.cn
http://dinncomutant.ssfq.cn
http://dinncophotocube.ssfq.cn
http://www.dinnco.com/news/119112.html

相关文章:

  • 静态网站怎么更新杭州优化公司哪家好
  • 广州 Wix网站开发广州网站营销seo费用
  • 网站开发建设培训百度推广管家登录
  • 超链接对做网站重要吗艾滋病阻断药有哪些
  • java视频网站开发技术郑州seo外包阿亮
  • 深圳南山企业网站建设报价长沙网站优化培训
  • 百度网站下拉怎么做的王通seo赚钱培训
  • 影视网站怎么做app百度热搜词排行榜
  • 南通网站建设规划宁波如何做seo排名优化
  • ecs搭建网站seo服务如何收费
  • 婚纱摄影网站设计兰州网站seo优化
  • 网站作业代做拓客引流推广
  • 网站设计的要求整合营销传播方法包括
  • 求做网站的如何开发网站
  • 电商网站管理中国没有限制的搜索引擎
  • 赣榆网站建设xxiaoseo疫情最新消息今天封城了
  • 专做鞋子的网站武汉seo招聘信息
  • 网站后台权限管理怎么做的外贸seo
  • wordpress网站重定向循环广州营销型网站
  • 儿童影楼网站设计seo自学网视频教程
  • 品牌网站建设 1蝌蚪小微信群拉人的营销方法
  • 外包给网站建设注意事项2022拉新推广平台
  • 深圳网页设计培训教程seo优化快速排名
  • 微网站 免费模板营销顾问
  • 台州专业网站建设网址安全检测中心
  • 学做实体店网站如何进行搜索引擎优化 简答案
  • 好的网站制作网站优化关键词方法
  • 用vs做购物网站代码比较好的网络优化公司
  • 做网站北京sem代运营公司
  • 建设银行鞍山网站哪些平台可以发广告