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

国内服务器做网站要备案做移动网站优化首

国内服务器做网站要备案,做移动网站优化首,企业门户网站在信息系统架构中属于哪个层次,在线修图网站配置git 创建git仓库 不同颜色代表的含义 红色——未加入版本控制;绿色——已经加入控制暂未提交;蓝色——加入,已提交,有改动;白色——加入,已提交,无改动;灰色——版本控制已忽略文…

配置git

在这里插入图片描述

创建git仓库

在这里插入图片描述

不同颜色代表的含义

在这里插入图片描述

  • 红色——未加入版本控制;
  • 绿色——已经加入控制暂未提交;
  • 蓝色——加入,已提交,有改动;
  • 白色——加入,已提交,无改动;
  • 灰色——版本控制已忽略文件;
  • 黄色——被git忽略,不跟踪。

添加文件到暂存区

在这里插入图片描述
文件在没有被添加到暂存区的时候,是红色的;添加到暂存区之后,是绿色的

提交到仓库

文件右键
在这里插入图片描述
或者通过导航栏(原来的VCS已经变成了Git)
在这里插入图片描述
在这里插入图片描述
提交之后文件会从绿色变为白色

修改文件

文件会变蓝色
可以直接提交,不需要再次添加

点击右侧不同,还可以回退或者查看不同
在这里插入图片描述

新建文件

在这里插入图片描述

查看版本历史

在这里插入图片描述
在这里插入图片描述

查看git记录

在这里插入图片描述

18:24:28.488: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false init
Initialized empty Git repository in D:/IDEA_Project/FileUpload/.git/
18:25:18.272: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false add --ignore-errors -A -- FileUpload.iml out/artifacts/FileUpload_war_exploded/index.html .idea/.gitignore .idea/runConfigurations.xml out/artifacts/FileUpload_war_exploded/META-INF/MANIFEST.MF .idea/misc.xml out/artifacts/FileUpload_war_exploded/WEB-INF/web.xml src/main/java/version4/Upload4.java .idea/jarRepositories.xml .idea/compiler.xml .idea/artifacts/FileUpload_war_exploded.xml web/index.html web/WEB-INF/web.xml pom.xml
18:25:18.560: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false add --ignore-errors -A -- .
warning: LF will be replaced by CRLF in out/artifacts/FileUpload_war_exploded/WEB-INF/web.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in pom.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in web/WEB-INF/web.xml.
The file will have its original line endings in your working directory
18:29:49.582: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false add --ignore-errors -A -f -- .idea/runConfigurations.xml pom.xml FileUpload.iml .idea/.gitignore .idea/artifacts/FileUpload_war_exploded.xml .idea/misc.xml src/main/java/version4/Upload4.java web/index.html .idea/jarRepositories.xml out/artifacts/FileUpload_war_exploded/META-INF/MANIFEST.MF .idea/compiler.xml out/artifacts/FileUpload_war_exploded/WEB-INF/web.xml web/WEB-INF/web.xml out/artifacts/FileUpload_war_exploded/index.html
18:29:49.712: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false commit -F C:\Users\gao\AppData\Local\Temp\git-commit-msg-.txt --
[master (root-commit) f61e227] 第一次提交14 files changed, 216 insertions(+)create mode 100644 .idea/.gitignorecreate mode 100644 .idea/artifacts/FileUpload_war_exploded.xmlcreate mode 100644 .idea/compiler.xmlcreate mode 100644 .idea/jarRepositories.xmlcreate mode 100644 .idea/misc.xmlcreate mode 100644 .idea/runConfigurations.xmlcreate mode 100644 FileUpload.imlcreate mode 100644 out/artifacts/FileUpload_war_exploded/META-INF/MANIFEST.MFcreate mode 100644 out/artifacts/FileUpload_war_exploded/WEB-INF/web.xmlcreate mode 100644 out/artifacts/FileUpload_war_exploded/index.htmlcreate mode 100644 pom.xmlcreate mode 100644 src/main/java/version4/Upload4.javacreate mode 100644 web/WEB-INF/web.xmlcreate mode 100644 web/index.html
18:31:29.597: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false add --ignore-errors -A -- src/main/java/version4/Upload4.java
18:33:21.589: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false add --ignore-errors -A -- src/main/java/version4/Test1.java
18:36:33.726: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false add --ignore-errors -A -f -- src/main/java/version4/Test1.java src/main/java/version4/Upload4.java
18:36:33.862: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false commit -F C:\Users\gao\AppData\Local\Temp\git-commit-msg-.txt --
[master fb72771] 第二次提交2 files changed, 9 insertions(+)create mode 100644 src/main/java/version4/Test1.java
18:37:05.852: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false add --ignore-errors -A -f -- src/main/java/version4/Upload4.java
18:37:05.985: [FileUpload] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false commit -F C:\Users\gao\AppData\Local\Temp\git-commit-msg-.txt --
[master eb6ec4c] 第三次提交1 file changed, 1 insertion(+)
http://www.yayakq.cn/news/732311/

相关文章:

  • 网易工作做网站工资奖金高吗企业营销策划案例
  • 建设购物网站需要多少费用企业logo设计合同
  • 网站首页没被收录购物网站成功案例
  • 软件介绍下载网站建设怎么注册企业邮箱号
  • 建设银行四川分行 招聘网站免费可商用的cms
  • 学校网站建设都是谁做的网络培训心得体会总结
  • 如何在ftp做网站国家企业信用信息公示系统山东
  • 网站设计北京新百度网站收录提交入口全攻略
  • 优酷视频上传网站源码中关村能力建设网站
  • 男女做暧昧试看网站上海最有名的设计公司有哪些
  • 免费定制logo网站青岛排名推广
  • 网站营销方案模板住房和城乡建设部网站施工员
  • 苏州响应式网站建设管理系统
  • 厦门市建设合同备案网站成都网站建设电话
  • 做网站可以挣钱吗承德建站公司
  • 快速建站完整版信阳网站网站建设
  • 白羊女做网站国外搜索引擎有哪些
  • 网站建设项目组织结构图用dw6做网站
  • 余姚建站公司网站建设怎设计
  • 织梦网站百度推送加哪企业邮箱注册申请一般多少钱
  • 做游戏网站多少钱网站自动化开发
  • 柳州网站建设找哪家网站做动态图片不显示
  • 网站开发后台数据怎么来创建一个网站的费用
  • 怎么自己制作一个网站广告联盟下载
  • 重庆网上房地产查询宁波seo推广方式排名
  • 南通 网站建设搞笑视频网站建设策划书
  • 买CAD设计图做的网站免费做的网站怎么设置域名解析
  • 用ps做网站的首页海口网站建设费用
  • 网站建设接单源码网站开发还是做数据库开发
  • 作网站公司天津建设工程信息网招聘