mac系统github如何clone到本地与上传

mac系统github如何clone到本地与上传

PropellerAds

Recommended

別把這個遊戲告訴您的女朋友!

誰比較騷啊?在遊戲中決定吧 [18歲以上]

這是有史以來最狂野的西方!查看RDR II未刪減的性愛場景

一、安装Git

MAC 上安装Git主要有两种方式

首先查看电脑是否安装Git,终端输入:

git

1

安装过则会输出:

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

2

3https://www.pianshen.com/article/3602301473/

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

通过homebrew安装Git

未安装homebrew,需安装homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

1

安装git

brew install git

1

通过Xcode安装

直接从AppStore安装Xcode,Xcode集成了Git,不过默认没有安装,你需要运行Xcode,选择菜单“Xcode”->“Preferences”,在弹出窗口中找到“Downloads”,选择“Command Line Tools”,点“Install”就可以完成安装了。

二、创建ssh key、配置git

设置username和email(github每次commit都会记录他们)

git config --global user.name "wenbo"

git config --global user.email "xxxxxxx@xxx.com"

1

2

通过终端命令创建ssh key

ssh-keygen -t rsa -C "xxxxxx@xxx.com"

1

xxxxxxx@xx.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

1

2

3

4

由于这里我原来已经创建过,这里我选n,没有创建过的,会要求确认路径和输入密码,我们这使用默认的一路回车就行。成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的key。

终端查看.ssh/id_rsa.pub文件

open .ssh/id_rsa.pub`

1

回车后,就会新弹出一个终端,然后复制里面的key。

或者用cat命令查看

cat .ssh/id_rsa.pub

1

登录GitHub(默认你已经注册了GitHub账号),添加ssh key,点击Settings,如图

点击New SSH key,如图

添加key,如图

链接验证

ssh -T git@github.com

1

终端输出结果

$ ssh -T git@github.com

Hi xxxxx You've successfully authenticated, but GitHub does not provide shell access.

1

2

说明已经链接成功。

三、提交本地项目到GitHub

在GitHub上新创建一个 repository或者Start a Project,如图:

填写项目信息,如下图所示:

点击Create repository,就创好一个工程了。

Clone工程到本地,首先复制ssh 地址

打开终端,这里只是测试,我想把工程克隆在桌面,首先在终端中切换路径到桌面,输入以下命令:

cd /Users/xxxx/Desktop/

1

(xxxx是自己mac的名字)

然后克隆项目,终端输入

git clone (这里是复制的SSH链接,直接command+v就可以了)

1

下载完成了之后,工程已经被克隆到桌面了。

在Xcode中新创建一个工程,保存的路径为刚刚克隆下来的LearnGit文件夹下,如下图所示:

提交修改,首先切换到LearnGit文件路径:

cd /Users/xxxx/Desktop/LearnGit

1

这里xxxx是mac的名字

然后输入:

//文件添加到仓库(.代表提交所有文件)

git add .

//把文件提交到仓库

git commit -m "First Commit"

//上传到github

git push

1

2

3

4

5

6

终端完整输出如下:

[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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

查看GitHub上的项目,LearnGit已经上传成功啦。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容

  • 初始化git 配置git 使用Git的第一件事就是设置你的名字和email,这些就是你在提交commit时的签名,...
    MiracleJQ阅读 1,384评论 0 0
  • 2016.12.4 虽然14年开发第一个项目时就已经接触了git,当时xcode已经开始支持git,在github...
    張小明阅读 394评论 1 0
  • 因为原文太长超出字数,Lesson 3 就放在另一篇文章里 How to Use Git and GitHub 标...
    赤乐君阅读 5,173评论 1 5
  • 什么是git版本管理控制工具(vcs) 1.分布式版本控制 2.多个开发人员协调工作 3.有效监听谁做的修改 4....
    Daryl_Z阅读 633评论 1 2
  • 1.配置查找电脑的.ssh key 2.将.ssh key填充至服务器(网站) 3.在服务器(网站)上新建一个项目...
    MYS_iOS_8801阅读 446评论 0 0