Github入門教程

2021-06-26 20:45:49 字數 2845 閱讀 4801

本文將教讀者如何使用github**託管服務快速建立專案和提交**。

1. 去github.com註冊帳號,略;

2. 在github.com設定裡新增ssh公鑰:

1). 需要在本地(linux)環境中下檢視是否已生成公鑰;ssh公鑰預設儲存在賬戶的主目錄下的/.ssh目錄,如下:

[root@~/.ssh]

# ls

id_rsa id_rsa.pub known_hosts

一般預設id_rsa.pub就是指公鑰,id_rsa是你本地的金鑰;若沒有,請使用ssh-keygen工具生成即可;

當獲取到公鑰後,請將公鑰內容 add ssh key即可:

2). 接下來請在github.com上建立新倉庫,舉例建立名為wadetest倉庫:

3). 在本地轉殖wadetest倉庫:

[root@~/wade]

# git clone [email protected]:billfeller/wadetest.git

initialized empty git repository in

/root/wade/wadetest/.git/

remote: counting objects: 6, done.

remote: compressing objects: 100%(

3/3), done.

remote: total 6

(delta 0

), reused 3

(delta 0

)receiving objects: 100%(

6/6), done.

4). 當第三步成功後,就可以進行本地的開發測試,提交**等一系列操作。比如完成第一次提交動作:

進入工作目錄wadetest;

建立新檔案index2.js;

提交index2.js到本地倉庫;

將本地修改分支master同步到伺服器[email protected]:billfeller/wadetest.git;

具體操作如下:

[root@~/wade]

# cd wadetest/

[root@~/wade/wadetest]

# ls

index.js readme.md

[root@~/wade/wadetest]

# touch index2.js

[root@~/wade/wadetest]

# git add index2.js

[root@~/wade/wadetest]

# git commit -m 'first commit'

[master ce86c0b] first commit

committer: root

>

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:

git config

--global user.name "your name"

git config

--global user.email [email protected]

if the identity used for this commit is wrong, you can fix it with:

git commit

--amend

--author='your name '

0 files changed, 0 insertions(+), 0 deletions(-)

create mode 100644 index2.js

[root@~/wade/wadetest]

# git remote -v

origin git

@github.com:billfeller/wadetest.git (fetch)

origin git

@github.com:billfeller/wadetest.git (push)

[root@~/wade/wadetest]

# git branch

* master

[root@~/wade/wadetest]

# git push [email protected]:billfeller/wadetest.git master

counting objects: 3, done.

compressing objects: 100%(

2/2), done.

writing objects: 100%(

2/2), 277 bytes, done.

total 2

(delta 0

), reused 0

(delta 0

)to git

@github.com:billfeller/wadetest.git

c46ad6c..ce86c0b master -> master

5). 至此,你的第一次提交就算完成了。

推薦閱讀:

《精通git》progit-cn.pdf

github入門教程

1.建立專案 前提 註冊github賬號 登入 點選start a project發起專案 建立專案 倉庫 repository name 專案 倉庫名稱 點選create repository建立創庫 建立成功 2.建立本地git資源庫 git安裝 ex安裝,不上圖了 本地建立專案資料夾,cmd進...

Github入門教程

有趣有內涵的文章第一時間送達!喝酒i創作i分享 生活中總有些東西值得分享 醉翁貓咪 之前我寫了一篇文章 一篇文章了解github和git教程 還延伸了幾篇閱讀,對大部分小白很有用,那麼我繼續普及下github頁面及其概念。github 網頁概念之前我寫了一些,接下來繼續介紹 commit 提交到倉庫...

github入門教程

注 下文為在window下的操作 1.輸入使用者名稱,郵箱,密碼註冊 2.註冊完成點選右上角選擇setting,選項裡的emali後有紅色感嘆號則需要你在郵件資訊裡確定 3.設定github的user name和email,在黑屏終端輸入git config global user.name git...