GitHub 的使用

目錄

  • 安裝git
  • 創(chuàng)建ssh key职烧、配置git
  • 提交本地項目到GitHub

一、安裝Git

MAC 上安裝Git主要有兩種方式

首先查看電腦是否安裝Git防泵,終端輸入:

安裝過則會輸出:

WMBdeMacBook-Pro:~ WENBO$ 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     Use binary search to find the commit 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     Reapply commits on top of another base tip
   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.

1、通過homebrew安裝Git

  • 1蝗敢、未安裝homebrew捷泞,需安裝homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  • 2、安裝git

2寿谴、通過Xcode安裝

直接從AppStore安裝Xcode锁右,Xcode集成了Git,不過默認沒有安裝讶泰,你需要運行Xcode咏瑟,選擇菜單“Xcode”->“Preferences”,在彈出窗口中找到“Downloads”痪署,選擇“Command Line Tools”码泞,點“Install”就可以完成安裝了。

二狼犯、創(chuàng)建ssh key余寥、配置git

  • 1、設置username和email(github每次commit都會記錄他們)
git config --global user.name "ixiuxiu"
git config --global user.email "luzhongxiux@gmail.com"

  • 2悯森、通過終端命令創(chuàng)建ssh key
ssh-keygen -t rsa -C "luzhongxiux@gmail.com"

1050794513@qq.com是我的郵件名宋舷,回車會有以下輸出

Last login: Sat Jan  6 14:12:16 on ttys000
WMBdeMacBook-Pro:~ WENBO$ ssh-keygen -t rsa -C "luzhongxiux@gmail.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/WENBO/.ssh/id_rsa): 
/Users/WENBO/.ssh/id_rsa already exists.
Overwrite (y/n)? n
WMBdeMacBook-Pro:~ ixiuxiu$ 

由于這里我原來已經(jīng)創(chuàng)建過,這里我選n瓢姻,沒有創(chuàng)建過的祝蝠,會要求確認路徑和輸入密碼,我們這使用默認的一路回車就行幻碱。成功的話會在~/下生成.ssh文件夾绎狭,進去,打開id_rsa.pub收班,復制里面的key坟岔。
終端查看.ssh/id_rsa.pub文件

回車后,就會新彈出一個終端摔桦,然后復制里面的key社付。
或者用cat命令查看

  • 3承疲、登錄GitHub(默認你已經(jīng)注冊了GitHub賬號),添加ssh key鸥咖,點擊Settings燕鸽,如圖

    [圖片上傳失敗...(image-d371d8-1587084583134)]

    屏幕快照 2018-01-06 下午2.40.11.png

    點擊New SSH key,如圖

    屏幕快照 2018-01-06 下午2.57.15.png

    添加key啼辣,如圖

    屏幕快照 2018-01-06 下午2.53.07.png

  • 4啊研、鏈接驗證

終端輸出結果

Last login: Sat Jan  6 14:42:55 on ttys000
WMBdeMacBook-Pro:~ WENBO$ ssh -T git@github.com 
Hi wenmobo! You've successfully authenticated, but GitHub does not provide shell access.
WMBdeMacBook-Pro:~ WENBO$ 

說明已經(jīng)鏈接成功。

三鸥拧、提交本地項目到GitHub

  • 1党远、在GitHub上新創(chuàng)建一個 repository或者Start a Project,如圖:

    屏幕快照 2018-01-06 下午3.21.40.png

  • 2富弦、填寫項目信息沟娱,如下圖所示:

    屏幕快照 2018-01-06 下午3.27.27.png

    點擊Create repository,就創(chuàng)好一個工程了。

  • 3腕柜、Clone工程到本地济似,首先復制ssh 地址

    屏幕快照 2018-01-06 下午3.32.04.png

    打開終端,這里只是測試盏缤,我想把工程克隆在桌面砰蠢,首先在終端中切換路徑到桌面,輸入以下命令:

cd /Users/WENBO/Desktop/

然后克隆項目,終端輸入

git clone git@github.com:wenmobo/LearnGit.git

git@github.com:wenmobo/LearnGit.git是剛剛復制的ssh路徑唉铜。
終端完整輸出如下:

Last login: Sat Jan  6 15:17:17 on ttys000
WMBdeMacBook-Pro:~ WENBO$ cd /Users/WENBO/Desktop/
WMBdeMacBook-Pro:Desktop WENBO$ git clone git@github.com:wenmobo/LearnGit.git
Cloning into 'LearnGit'...
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 5 (delta 0), reused 0 (delta 0), pack-reused 0
Receiving objects: 100% (5/5), 5.2

這時台舱,工程已經(jīng)被克隆到桌面了,如下圖:

屏幕快照 2018-01-06 下午3.42.57.png

  • 4打毛、在Xcode中新創(chuàng)建一個工程柿赊,保存的路徑為剛剛克隆下來的LearnGit文件夾下,如下圖所示:

    屏幕快照 2018-01-06 下午3.48.59.png

  • 5幻枉、提交修改碰声,首先切換到LearnGit文件路徑:

cd /Users/WENBO/Desktop/LearnGit 

然后輸入:


git add .

git commit -m "First Commit"

git push

終端完整輸出如下:

Last login: Sat Jan  6 15:49:54 on ttys000
WMBdeMacBook-Pro:~ WENBO$ cd /Users/WENBO/Desktop/LearnGit 
WMBdeMacBook-Pro:LearnGit WENBO$ git add .
WMBdeMacBook-Pro:LearnGit WENBO$ git commit -m "First Commit"
[master ae3bbe9] First Commit
 11 files changed, 649 insertions(+)
 create mode 100644 LearnGitDemo/LearnGitDemo.xcodeproj/project.pbxproj
 create mode 100644 LearnGitDemo/LearnGitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata
 create mode 100644 LearnGitDemo/LearnGitDemo/AppDelegate.h
 create mode 100644 LearnGitDemo/LearnGitDemo/AppDelegate.m
 create mode 100644 LearnGitDemo/LearnGitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json
 create mode 100644 LearnGitDemo/LearnGitDemo/Base.lproj/LaunchScreen.storyboard
 create mode 100644 LearnGitDemo/LearnGitDemo/Base.lproj/Main.storyboard
 create mode 100644 LearnGitDemo/LearnGitDemo/Info.plist
 create mode 100644 LearnGitDemo/LearnGitDemo/ViewController.h
 create mode 100644 LearnGitDemo/LearnGitDemo/ViewController.m
 create mode 100644 LearnGitDemo/LearnGitDemo/main.m
WMBdeMacBook-Pro:LearnGit WENBO$ git push
Warning: Permanently added the RSA host key for IP address '192.30.255.112' to the list of known hosts.
Counting objects: 20, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (18/18), done.
Writing objects: 100% (20/20), 6.80 KiB | 0 bytes/s, done.
Total 20 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), done.
To github.com:wenmobo/LearnGit.git
   1000218..ae3bbe9  master -> master
WMBdeMacBook-Pro:LearnGit WENBO$ 

查看GitHub上的項目,LearnGit已經(jīng)上傳成功啦熬甫,如下圖所示:

屏幕快照 2018-01-06 下午3.54.48.png

總結

自己現(xiàn)在公司項目都是用SVN托管的胰挑,沒有用Git托管。用到Git的地方就是用碼云托管自己寫的小Demo椿肩,我也是通過這篇文章了解下上傳項目到GitHub的基本流程瞻颂,和碼云上傳其實也沒多大的區(qū)別,碼云上傳我沒有用終端郑象,而是用的SourceTree贡这,Git圖形化工具還是挺多的,可以自己去了解與使用吧厂榛。文章中所寫的也是一些最基本的使用盖矫,還是多多了解下吧丽惭,萬一以后的公司要用呢,哈哈辈双。

參考文章

1责掏、Git教程
2、【Github教程】史上最全github使用方法:github入門到精通
3湃望、GotGitHub

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末换衬,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子证芭,更是在濱河造成了極大的恐慌瞳浦,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件檩帐,死亡現(xiàn)場離奇詭異术幔,居然都是意外死亡,警方通過查閱死者的電腦和手機湃密,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來四敞,“玉大人泛源,你說我怎么就攤上這事》尬#” “怎么了达箍?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長铺厨。 經(jīng)常有香客問我缎玫,道長,這世上最難降的妖魔是什么解滓? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任赃磨,我火速辦了婚禮,結果婚禮上洼裤,老公的妹妹穿的比我還像新娘邻辉。我一直安慰自己,他們只是感情好腮鞍,可當我...
    茶點故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布值骇。 她就那樣靜靜地躺著,像睡著了一般移国。 火紅的嫁衣襯著肌膚如雪吱瘩。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天迹缀,我揣著相機與錄音使碾,去河邊找鬼蜜徽。 笑死,一個胖子當著我的面吹牛部逮,可吹牛的內(nèi)容都是我干的娜汁。 我是一名探鬼主播,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼兄朋,長吁一口氣:“原來是場噩夢啊……” “哼掐禁!你這毒婦竟也來了?” 一聲冷哼從身側響起颅和,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤傅事,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后峡扩,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蹭越,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年教届,在試婚紗的時候發(fā)現(xiàn)自己被綠了响鹃。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,814評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡案训,死狀恐怖买置,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情强霎,我是刑警寧澤忿项,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布,位于F島的核電站城舞,受9級特大地震影響轩触,放射性物質發(fā)生泄漏。R本人自食惡果不足惜家夺,卻給世界環(huán)境...
    茶點故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一脱柱、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧秦踪,春花似錦褐捻、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至景馁,卻和暖如春板壮,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背合住。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工绰精, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留撒璧,地道東北人。 一個月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓笨使,卻偏偏與公主長得像卿樱,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子硫椰,可洞房花燭夜當晚...
    茶點故事閱讀 43,728評論 2 351

推薦閱讀更多精彩內(nèi)容