国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

【全棧之路】版本控制課程一_Git如何把本地代碼推送到遠(yuǎn)程倉庫(20190709v1.0)

Ocean / 751人閱讀

摘要:歡迎進(jìn)入全棧之路之版本控制基礎(chǔ)課程博客地址本系列文章將主要針對(duì)代碼的版本控制進(jìn)行講解,希望對(duì)廣大同行帶來一些幫助。下面將重點(diǎn)介紹實(shí)際項(xiàng)目中如何提交代碼至遠(yuǎn)程倉庫。

歡迎進(jìn)入全棧之路之版本控制基礎(chǔ)課程

博客地址:https://blog.csdn.net/houjiyu...
本系列文章將主要針對(duì)代碼的版本控制進(jìn)行講解,希望對(duì)廣大同行帶來一些幫助。若有問題請(qǐng)及時(shí)留言或加QQ:243042162。

寄語:
如果你不去希望,你就不會(huì)發(fā)現(xiàn)什么東西超出了你的希望。
背景

項(xiàng)目建立初期都是先搭建基礎(chǔ)框架,再把代碼放到代碼管理服務(wù)器上,讓項(xiàng)目組成員進(jìn)行檢出從而進(jìn)行需求的開發(fā)。下面將重點(diǎn)介紹實(shí)際項(xiàng)目中如何提交代碼至git遠(yuǎn)程倉庫。

步驟

1.下載安裝git
自己本身系統(tǒng)是win10,下載地址:https://git-for-windows.githu...

2.初始化版本庫:git init

rain@DESKTOP-R3H1KFK MINGW64 /c/WebstormProjects/cmpy-project/project-center
$ git init
Initialized empty Git repository in C:/WebstormProjects/cmpy-project/p                                                                                      roject-center/.git/

3.添加文件到版本庫:git add .

rain@DESKTOP-R3H1KFK MINGW64 /c/WebstormProjects/cmpy-project/project-                                                                                                      center (master)
$ git add .
warning: LF will be replaced by CRLF in assets/css/font-awesome.min.css.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in assets/js/ie/html5shiv.js.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in assets/js/ie/respond.min.js.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in assets/js/jquery.min.js.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in assets/js/skel.min.js.
The file will have its original line endings in your working directory.

4.提交到版本庫,并填寫提交備注:git commit -m "v1.0"

rain@DESKTOP-R3H1KFK MINGW64 /c/WebstormProjects/cmpy-project/project-center (master)
$ git commit -m "v1.0"
[master (root-commit) 260e147] v1.0
 53 files changed, 8306 insertions(+)

5.把本地庫與遠(yuǎn)程庫關(guān)聯(lián):git remote add origin 你的遠(yuǎn)程庫地址

rain@DESKTOP-R3H1KFK MINGW64 /c/WebstormProjects/cmpy-project/project-center (master)
$ git remote add origin 遠(yuǎn)程庫地址

6.推送至遠(yuǎn)程:git push -u origin master -f

rain@DESKTOP-R3H1KFK MINGW64 /c/WebstormProjects/cmpy-project/project-center (master)
$ git push -u origin master -f
Counting objects: 65, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (65/65), done.
Writing objects: 100% (65/65), 478.97 KiB | 0 bytes/s, done.
Total 65 (delta 2), reused 0 (delta 0)

7.查看狀態(tài):git status

rain@DESKTOP-R3H1KFK MINGW64 /c/WebstormProjects/cmpy-project/project-center (master)
$ git status
On branch master
Your branch is up-to-date with "origin/master".
nothing to commit, working tree clean

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/75249.html

相關(guān)文章

  • Git基礎(chǔ)知識(shí)教程整理(Git基本操作)

    摘要:簡介是目前世界上最先進(jìn)的分布式版本控制系統(tǒng)沒有之一。查看所有分支的版本操作記錄。工作區(qū)直接刪除文件,提交到版本庫。與他人協(xié)作涉及管理遠(yuǎn)程倉庫以及根據(jù)需要推送或拉取數(shù)據(jù)。克隆遠(yuǎn)程倉庫支持多種協(xié)議,默認(rèn)使用,也可以使用等其他協(xié)議。 Git簡介 Git是目前世界上最先進(jìn)的分布式版本控制系統(tǒng)(沒有之一)。Linux之父Linux用C語言寫了Git分布式版本控制系統(tǒng)。 分布式版本控制系統(tǒng)與集中式...

    187J3X1 評(píng)論0 收藏0
  • Git 實(shí)用指南

    摘要:個(gè)人整理的一些常用的概念和命令集合,方便速查和快速解決某些場(chǎng)景下的問題,覆蓋了日常開發(fā)和協(xié)同工作下的一部分場(chǎng)景,不只是命令行的介紹。常用命令創(chuàng)建一個(gè)空白的倉庫指的是本地的倉庫關(guān)聯(lián)的遠(yuǎn)程倉庫。 個(gè)人整理的一些常用的 Git 概念和命令集合,方便速查和快速解決某些場(chǎng)景下的問題,覆蓋了日常開發(fā)和協(xié)同工作下的一部分場(chǎng)景,不只是命令行的介紹。歡迎關(guān)注語雀原文,持續(xù)更新! 精簡入門 1、克隆倉庫...

    qpal 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<