終端提交程式碼到碼雲
一.下載安裝Git
檢視電腦是否安裝Git,開啟終端,輸入git,回車如果輸出如下,則代表已安裝了git
[ruby] view plain copy- $ git
- usage: git [--version] [--help] [-C <path>] [-c name=value]
- [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
- [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]
- [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
- <command> [<args>]
- These are common Git commands used in various situations:
- start a working area (see also: git help tutorial)
- clone Clone a repository into a new directory
- init Create an empty Git repository or reinitialize an existing one
- work on the current change (see also: git help everyday)
- add Add file contents to the index
- mv Move or rename a file, a directory, or a symlink
- reset Reset current HEAD to the specified state
- rm Remove files from the working tree and from the index
- examine the history and state (see also: git help revisions)
- bisect Find by binary search the change that introduced a bug
- grep Print lines matching a pattern
- log Show commit logs
- show Show various types of objects
- status Show the working tree status
- grow, mark and tweak your common history
- branch List, create, or delete branches
- checkout Switch branches or restore working tree files
- commit Record changes to the repository
- diff Show changes between commits, commit and working tree, etc
- merge Join two or more development histories together
- rebase Forward-port local commits to the updated upstream head
- tag Create, list, delete or verify a tag object signed with GPG
- collaborate (see also: git help workflows)
- fetch Download objects and refs from another repository
- pull Fetch from and integrate with another repository or a local branch
- push Update remote refs along with associated objects
- 'git help -a' and 'git help -g' list available subcommands and some
- concept guides. See 'git help <command>' or 'git help <concept>'
- to read about a specific subcommand or concept.
- macdeMacBook-Pro:~ Artron_LQQ$
- $ git
- The program 'git' is currently not installed. You can install it by typing:
- sudo apt-get install git
輸入命令:git --version 可檢視當前git版本
[objc] view plain copy- $ git --version
- git version 2.5.4 (Apple Git-61)
- macdeMacBook-Pro:~ Artron_LQQ$
當然,網上也有一些安裝git的途徑,可自行學習...
二.安裝後需要一些配置
配置使用者名稱和郵箱:
[objc] view plain copy- $ git config --global user.name "Your Name"
- $ git config --global user.email "[email protected]"
使用 --global 修飾後設置的全域性的使用者,如果設定單個專案的使用者,可cd到專案根目錄下,執行如下命令:
[objc] view plain copy- $ git config user.name "Your Name"
- $ git config user.email "[email protected]"
使用命令:git config --list 可檢視當前使用者資訊以及其他的一些資訊
[objc] view plain copy- $ git config --list
- core.excludesfile=/Users/mac/.gitignore_global
- difftool.sourcetree.cmd=opendiff "$LOCAL" "$REMOTE"
- difftool.sourcetree.path=
- mergetool.sourcetree.cmd=/Applications/SourceTree.app/Contents/Resources/opendiff-w.sh "$LOCAL" "$REMOTE" -ancestor "$BASE" -merge "$MERGED"
- mergetool.sourcetree.trustexitcode=true
- http.postbuffer=524288000
- https.postbuffer=524288000
- user.email=你的郵箱@qq.com
- user.name=你的使用者名稱
- macdeMacBook-Pro:~ Artron_LQQ$
三.建立本地git倉庫
1. cd到你的專案目錄
[ruby] view plain copy- $ cd /Users/mac/Desktop/GitTest
- $ git init
輸出如下:
[objc] view plain copy- $ git init
- Initialized empty Git repository in /Users/mac/Desktop/GitTest/.git/
建立了一個空的本地倉庫.
3.將專案的所有檔案新增到快取中:
[objc] view plain copy- $ git add .
4.將快取中的檔案Commit到git庫
git commit -m "新增你的註釋,一般是一些更改資訊"
下面是第一次提交時的輸出:
[objc] view plain copy- $ git commit -m "新增專案"
- [master (root-commit) 3102a38] 新增專案
- 18 files changed, 1085 insertions(+)
- create mode 100644 GitTest.xcodeproj/project.pbxproj
- create mode 10
相關推薦
終端提交程式碼到碼雲
一.下載安裝Git 檢視電腦是否安裝Git,開啟終端,輸入git,回車如果輸出如下,則代表已安裝了git [ruby] view plain copy
終端提交代碼到碼雲
one readme detail signed edit branch ria pes ups 終端提交代碼到碼雲 一.下載安裝Git 查看電腦是否安裝git,打開終端,輸入git,回車如果輸出如下,則代表已安裝了git
用git命令把程式碼提交到碼雲倉庫
1,首先要在碼雲上新建一個專案: 點選建立之後: 這樣就建立完成了一個私人的專案了: 建立完成之後: 複製這個地址,這個就是你原生代碼要跟這個地址建立遠端庫的連線,下面會用到的 ,先複製儲存起來。 下面就是使用git命令進行操作了: cd 你的程式碼目錄git initgit
程式碼提交到碼雲
寫這篇部落格其實主要算是一個筆記,當然也是為了希望幫助更多使用git的新手 1、首先,你需要在本地安裝git客戶端,此處網上教程較多,不在贅述 2、假設本地專案路徑為: E:\gitWorkspace\spring-fra
vue專案、程式碼提交至碼雲、iconfont的使用
一、前期準備 首先得有一個碼雲賬號,賬號名最好是英文,用於線上倉庫 其次下載一個git到電腦,因為很多git命令,cmd命令列識別不了 最好再有一個Iconfont賬號,很多前端用到的圖示就不用再自己畫了,直接新增到專案下載下來就可以用了 還需要用到的有no
簡易將現有專案提交到碼雲(gitee)
簡易將現有專案提交到碼雲(gitee) 想了解更多關於碼雲,請參考碼雲幫助文件:http://git.mydoc.io/ 一、建立碼雲賬號 以及git安裝 1.碼雲賬號讀者請自行建立,參考教程:http://git.mydoc.io/?t=179267 2.git軟體讀者請
本地專案提交到碼雲
1、下載Git Bash 2、執行Git Bash 預設安裝即可,省略… 3、生成公鑰 找到本地專案,點選右鍵->開啟Git Bash Here,輸入命令列:ssh-keygen -t rsa -C 郵箱地址,如圖3-1所示, 圖3-1 4、
在VSCode上新建的專案第一次提交到碼雲
第一步、node、cnpm、vue-cli的安裝可以參考windows下Vue環境搭建 第二步、專案成功跑起來之後,我們將程式碼提交到碼雲: ①開啟vscode,檔案->開啟資料夾,選擇我們第一步建立好的專案(第一步中的first-project專案)
eclipse中git外掛的使用(專案提交到碼雲)
eclipse上建立專案testgit,並同步到本地git倉庫,專案右鍵team–shareProject,如圖: respository:本地倉庫地址 點選finish完成本地倉庫建立,接下來將專案提交到本地倉庫:
新手git提交到碼雲上去所遇問題
當從本地倉庫提交到遠端倉庫時( git push -u origin master ),報這個錯誤. hint: Updates were rejected because the tip of your current branch is behind hint: its
創建本地Git並提交到碼雲
oracl 安全 配置ssh 分支 first onf ali remote cat 使用Git Bash創建本地Git全局用戶名,提交遠程代碼時將以此用戶名顯示git config --global --replace-all user.email "itoracle@a
如何將本地開發的專案提交到碼雲?
1、本地安裝git環境 下載安裝包安裝即可 2、初始化git專案,生成 .git 配置目錄 進入專案根目錄,右鍵 git bash here開啟控制檯 ,輸入git init即可完成 3、將專案加入本地git倉庫 git add . (此處add後面有空格 和點號)
碼雲~本地檔案提交到遠端程式碼倉庫
1 git 配置 git config --global user.name “使用者名稱” git config --global user.email “郵箱” 2 生成公鑰私鑰 #ssh-keygen -t rsa -C "[emai
已有本地專案使用git提交程式碼到碼雲coding
進行下面步驟之前,請先在電腦上要裝git工具,官方下載地址:https://git-scm.com/download/win,而且要有coding(程式碼管理)賬號,coding網址:https://coding.net/,可以使用微信或qq登入,然後進行操作 1.在coding上新建一個專案,
git往碼雲提交程式碼在新環境下首次使用的相關問題
1.新增公鑰 輸入下面git 命令生成公鑰,預設路徑(C:\Users\Administrator.ssh),複製貼上到碼雲上即可(設定-安全設定-ssh公鑰) ssh-keygen -t rsa 2.首次push時按提示提交碼雲繫結的郵箱和暱稱 程式碼如下: git con
Pycharm中使用Git提交程式碼到Github或碼雲遠端倉庫詳解
說明: 檔名紅色, 表示在工作區 檔名綠色, 表示在暫存區 檔名藍色, 表示檔案有修改,位於暫存區 檔名無顏色,表示位於本地倉庫區或已經提交到遠端倉庫區 檔名為紅色,需要手動執行git add .,
新手:webstorm如何用git在碼雲拉取專案,提交程式碼
1,在碼雲上新建專案,步驟不多說了 2,在webstorm點選VCS ->check out from version control ->git 點選clone就拉取專案成功啦,如何就可以開始寫專案啦 3,提交程式碼 寫完之後可以看左下角 也可以選中檔案
使用tortoiseGit向碼雲提交程式碼
1.首先第一是下載git並安裝,百度上邊的很清楚就不在贅述了. 2.第二步就是下載git的圖形化介面工具並安裝我也不再贅述了(個人推薦tortoiseGit因為它有漢化哦) 3.接著就是重點了如何在本地建立一個倉庫並上傳到碼雲呢? 首先我們要先建立一個ssh的金鑰,在安
使用Git提交檔案/程式碼到碼雲
前言 為什麼要使用碼雲? 上傳/下載網速慢,尤其是網速差的情況下,基本無法下載。 GitHub私有專案收費,還貴。有些專案我們上傳到倉庫,是為了方便管理,並不想讓別人看到。 協作性差,專案間無法形成組織,無法新增多人管理。 但是這些都無法否認Git
git 提交專案程式碼到碼雲步驟 以及出現錯誤解決辦法
出現錯誤 $ git push origin master To https://gitee.com/heguxin/XXX ! [rejected] master -> master (fetch first) error: failed to push some refs to '