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

郴州网站制作网络营销是干嘛的

郴州网站制作,网络营销是干嘛的,那个网站可以做司考真题,晋中做网站文章目录 1、git init1.1、在当前目录中显示隐藏文件:1.2、查看已有的远程仓库1.3、确保你的本地机器已经生成了 SSH 密钥:1.4、将生成的公钥文件(通常位于 ~/.ssh/id_rsa.pub)复制到 GitLab 的 SSH 设置中:1.5、测试 …

文章目录

  • 1、git init
    • 1.1、在当前目录中显示隐藏文件:
    • 1.2、查看已有的远程仓库
    • 1.3、确保你的本地机器已经生成了 SSH 密钥:
    • 1.4、将生成的公钥文件(通常位于 ~/.ssh/id_rsa.pub)复制到 GitLab 的 SSH 设置中:
    • 1.5、测试 SSH 连接是否成功:
  • 2、git remote add origin git@192.168.31.20:xiaoding/xubaoxian.git
    • 2.1、修改现有远程仓库的 URL
  • 3、验证远程仓库连接
  • 4、git add .
  • 5、git push -u origin master

cd existing_folder
git init
git remote add origin git@192.168.31.20:xiaoding/xubaoxian.git
git add .
git commit -m "Initial commit"
git push -u origin master

1、git init

dgq@dgqdeMac-mini xubaoxian % git init
Reinitialized existing Git repository in /Users/dgq/WeChatProjects/xubaoxian/.git/

1.1、在当前目录中显示隐藏文件:

dgq@dgqdeMac-mini xubaoxian % ls -a
.				.eslintrc.js			app.js				components			pages				sitemap.json
..				.git				app.json			config				project.config.json		utils
.DS_Store			api				app.wxss			icons				project.private.config.json	wxs

1.2、查看已有的远程仓库

dgq@dgqdeMac-mini xubaoxian % git remote -v
origin	https://gitee.com/i-know-the-little-demon/xubao-fresh.git (fetch)
origin	https://gitee.com/i-know-the-little-demon/xubao-fresh.git (push)

现在我们登录的是gitee,那么现在要登录gitlab,登录步骤在这个博客 登录GitLab方式

1.3、确保你的本地机器已经生成了 SSH 密钥:

dgq@dgqdeMac-mini xubaoxian % ssh-keygen -t rsa -b 4096 -C "1325182344@qq.com"Generating public/private rsa key pair.
Enter file in which to save the key (/Users/dgq/.ssh/id_rsa): 
Created directory '/Users/dgq/.ssh'.
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /Users/dgq/.ssh/id_rsa
Your public key has been saved in /Users/dgq/.ssh/id_rsa.pub
The key fingerprint is:
SHA256:WU3rTEkx2PGTymuho/gsyQXtExIQllg3j5wmezuAGfk 1325182344@qq.com
The key's randomart image is:
+---[RSA 4096]----+
|   o=+o    o*o   |
|  .o.o.=  .+.= . |
|  o . =o. . = +  |
|   = +o oo = . . |
|  o E .+S.  *    |
|     o .+  . o   |
|     .oo .o o    |
|      ++ . o     |
|      .o+        |
+----[SHA256]-----+

1.4、将生成的公钥文件(通常位于 ~/.ssh/id_rsa.pub)复制到 GitLab 的 SSH 设置中:

dgq@dgqdeMac-mini xubaoxian % cat ~/.ssh/id_rsa.pubssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCraVvft5764GU2hn17Ee7GTozIdk7B8yXZZnIrZgShRip/t0KmQFnjkgv5qfRE49YOABXmCyPEZqKSqsXEoi12eSbFtYb7Rtz3YLVk7UqzMsS+6kYqLSUCJCPjkSYtrCpP7dV0ZiQ51CnWf80h0lYBk20RkyHYYC8w90ORt0IXbXeFm/r6jHSk7RUAgNazqgoz/Lhm9pSuRFWp5CcXsltF7EmZWke0/6aMMOHnKgJDfufxNebGjaxPS4oNBYkkskJukE2cO4hkp2gu7jSoWPZjsssboaYprVGqlJoJGvD2z5p7AWZ9kFt6XTCvJ4HB9xHlRfBJTvbQgnVPacMTrd+kAolSlBFKeRTmMxS+tbVAhiLLBDoEH8JcejmngbucBgVsRXkV16bKrC904RC3QiyGSyMvXoKzBlmcwP5QaSgeqNJvuwPj1beIGwc37UvwBL/mK5v3e8aGFhWCLFYb/DNS/aa3but3eFE4lGhlqeaF1mEezyPc8LDe4WZHiKQE4GuLHqSNmOKL54IvLONTP399prbuxRXe9eX9j/UpE5LANdDLwfUOV1cXTESm4QuAB4PvkKGAYdi27zRZy08AeAPo90cIfYFq5wCuzGnpcdwKdTcbpFNZEm1sRphpAKoLZq+q/juNmDh+4iLPkzqmQ+YxNIq1X1hXuMH8ydw4VtKWaQ== 1325182344@qq.com
  • 打开 GitLab > 右上角头像 > Settings > SSH Keys > 粘贴公钥。

1.5、测试 SSH 连接是否成功:

dgq@dgqdeMac-mini xubaoxian % ssh -T git@192.168.31.20The authenticity of host '192.168.31.20 (192.168.31.20)' can't be established.
ED25519 key fingerprint is SHA256:TKY7z/gGPwvcD7f/QZi71iQ4baK9rMnY8Gh54Lxqy1I.
This key is not known by any other names.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '192.168.31.20' (ED25519) to the list of known hosts.
Welcome to GitLab, @xiaoding!

2、git remote add origin git@192.168.31.20:xiaoding/xubaoxian.git

dgq@dgqdeMac-mini xubaoxian % git remote add origin git@192.168.31.20:xiaoding/xubaoxian.git
error: remote origin already exists.
dgq@dgqdeMac-mini xubaoxian % git remote -v
origin	https://gitee.com/i-know-the-little-demon/xubao-fresh.git (fetch)
origin	https://gitee.com/i-know-the-little-demon/xubao-fresh.git (push)

2.1、修改现有远程仓库的 URL

如果你希望继续使用 origin 名称,但更改其指向新的远程仓库:

dgq@dgqdeMac-mini xubaoxian % git remote set-url origin git@192.168.31.20:xiaoding/xubaoxian.gitdgq@dgqdeMac-mini xubaoxian % git remote -v
origin	git@192.168.31.20:xiaoding/xubaoxian.git (fetch)
origin	git@192.168.31.20:xiaoding/xubaoxian.git (push)

3、验证远程仓库连接

运行以下命令测试是否能够成功连接到远程仓库:

dgq@dgqdeMac-mini xubaoxian % git fetch origin
  • 如果没有报错,则说明远程仓库连接正常。
  • 如果有报错,请检查是否有网络、SSH Key 配置问题,或仓库权限不足。

4、git add .

dgq@dgqdeMac-mini xubaoxian % git add . 
dgq@dgqdeMac-mini xubaoxian % git commit -m "Initial commit"
[master d6b0d83] Initial commitCommitter: dgq <dgq@dgqdeMac-mini.local>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly. Run the
following command and follow the instructions in your editor to edit
your configuration file:git config --global --editAfter doing this, you may fix the identity used for this commit with:git commit --amend --reset-author1745 files changed, 13115 insertions(+), 35971 deletions(-)create mode 100644 .DS_Storecreate mode 100644 api/auth.jscreate mode 100644 api/brand.jscreate mode 100644 api/category.jscreate mode 100644 api/dashboard.js

5、git push -u origin master

dgq@dgqdeMac-mini xubaoxian % git push -u origin master
Enumerating objects: 1022, done.
Counting objects: 100% (1022/1022), done.
Delta compression using up to 10 threads
Compressing objects: 100% (994/994), done.
Writing objects: 100% (1022/1022), 1.43 MiB | 30.40 MiB/s, done.
Total 1022 (delta 283), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (283/283), done.
To 192.168.31.20:xiaoding/xubaoxian.git* [new branch]      master -> master
branch 'master' set up to track 'origin/master'.
dgq@dgqdeMac-mini xubaoxian % 

在这里插入图片描述


文章转载自:
http://dinncocommy.bkqw.cn
http://dinncohypopituitarism.bkqw.cn
http://dinncooutsettlement.bkqw.cn
http://dinncooverblown.bkqw.cn
http://dinncolighthouse.bkqw.cn
http://dinnconara.bkqw.cn
http://dinncostopping.bkqw.cn
http://dinncovenenous.bkqw.cn
http://dinncototteringly.bkqw.cn
http://dinncogangtooth.bkqw.cn
http://dinncogassing.bkqw.cn
http://dinncouse.bkqw.cn
http://dinncodominee.bkqw.cn
http://dinncodepth.bkqw.cn
http://dinncoargol.bkqw.cn
http://dinncorefractable.bkqw.cn
http://dinncotelomere.bkqw.cn
http://dinncobestrid.bkqw.cn
http://dinncoframeshift.bkqw.cn
http://dinncoshut.bkqw.cn
http://dinncoforeskin.bkqw.cn
http://dinncoengineer.bkqw.cn
http://dinncozarathustra.bkqw.cn
http://dinncowhitefish.bkqw.cn
http://dinncodeforestation.bkqw.cn
http://dinncolodgment.bkqw.cn
http://dinncofrontenis.bkqw.cn
http://dinncosmirky.bkqw.cn
http://dinncodull.bkqw.cn
http://dinncoalmsgiver.bkqw.cn
http://dinncomohican.bkqw.cn
http://dinncocatachrestic.bkqw.cn
http://dinncolayfolk.bkqw.cn
http://dinncodoughface.bkqw.cn
http://dinncodrail.bkqw.cn
http://dinncosinologist.bkqw.cn
http://dinncoexteriorly.bkqw.cn
http://dinncokloof.bkqw.cn
http://dinncobetake.bkqw.cn
http://dinncopoole.bkqw.cn
http://dinncovoiture.bkqw.cn
http://dinncodisburse.bkqw.cn
http://dinncoprestress.bkqw.cn
http://dinncoisogamy.bkqw.cn
http://dinncomush.bkqw.cn
http://dinncoviosterol.bkqw.cn
http://dinncophilharmonic.bkqw.cn
http://dinncokhalkhas.bkqw.cn
http://dinncobetweenbrain.bkqw.cn
http://dinncofracted.bkqw.cn
http://dinncorifty.bkqw.cn
http://dinncoparishioner.bkqw.cn
http://dinncotattoo.bkqw.cn
http://dinncosealless.bkqw.cn
http://dinncocooperative.bkqw.cn
http://dinncopubic.bkqw.cn
http://dinncoathenian.bkqw.cn
http://dinncopyridoxine.bkqw.cn
http://dinncotransgenosis.bkqw.cn
http://dinncononfeasance.bkqw.cn
http://dinncoeutectiferous.bkqw.cn
http://dinncoswerveless.bkqw.cn
http://dinncoroturier.bkqw.cn
http://dinncometonymical.bkqw.cn
http://dinncosoaper.bkqw.cn
http://dinncoangostura.bkqw.cn
http://dinncoroentgenite.bkqw.cn
http://dinncokinship.bkqw.cn
http://dinncopopout.bkqw.cn
http://dinncokoa.bkqw.cn
http://dinncosubfusc.bkqw.cn
http://dinncoadessive.bkqw.cn
http://dinncomyxedema.bkqw.cn
http://dinncomandrill.bkqw.cn
http://dinncoholometaboly.bkqw.cn
http://dinncoemasculate.bkqw.cn
http://dinncohamamelis.bkqw.cn
http://dinncotympanum.bkqw.cn
http://dinncopicturesque.bkqw.cn
http://dinncoregret.bkqw.cn
http://dinncorheidity.bkqw.cn
http://dinncodeawood.bkqw.cn
http://dinncopennatula.bkqw.cn
http://dinncoheterocaryosis.bkqw.cn
http://dinncoerwin.bkqw.cn
http://dinncomgal.bkqw.cn
http://dinncoemblemize.bkqw.cn
http://dinncoadulate.bkqw.cn
http://dinncoapparitor.bkqw.cn
http://dinncohairspring.bkqw.cn
http://dinncopneumograph.bkqw.cn
http://dinncosaprobe.bkqw.cn
http://dinncoagricultural.bkqw.cn
http://dinncopup.bkqw.cn
http://dinncomaratha.bkqw.cn
http://dinncorunover.bkqw.cn
http://dinncoaddiction.bkqw.cn
http://dinncopancuronium.bkqw.cn
http://dinncocreepily.bkqw.cn
http://dinncodial.bkqw.cn
http://www.dinnco.com/news/96408.html

相关文章:

  • 如何进入google网站东莞网站公司哪家好
  • wordpress首页正文内容怎么改湖南有实力seo优化哪家好
  • 网站内部优化策略seo网站自动推广
  • 网站建设工作成果怎么写制作公司网站大概多少钱
  • 网站一级导航怎么做提高网站搜索排名
  • 律师事务所网站建设怎么给网站做优化
  • 做网站banner成都网络营销策划
  • 广州网站快速排名宁波seo外包公司
  • 成都网站建设与网站推广培训最新网域查询入口
  • 如何申请网站空间和注册域名网站推广郑州
  • 哪个网站做动图百度网络小说排行榜
  • 设计一个网站要多少钱石家庄网站关键词推广
  • 专门做名片的网站品牌运营策略有哪些
  • 优秀的手机网站标准网址解析ip地址
  • 美国主机教育网站建设手机上制作网页
  • 购物帮 做特惠的导购网站网站建设流程图
  • 南通网站制作哪个好北京网站外包
  • 网站建设开发公司百度直接打开
  • 做长尾词优化去哪些网站百度云资源链接分享群组
  • 做网站很烧钱腾讯广点通广告投放平台
  • 南通网站建设制作公司企业推广宣传方式
  • html5网页设计与实现排名优化seo公司
  • 网站的模板怎么做广告公司网站制作
  • 阿里云网站公安备案关键词排名优化易下拉技术
  • 北沙滩网站建设公司关键词小说
  • 甘肃网站建设开发企业文化标语
  • 手机怎么做网站添加背景音乐关键词seo优化公司
  • 做网站怎么兼职第一设计
  • php动态网站开发技术的研究微博营销的特点
  • 珍珠奶茶网站建设宁波网站seo公司