“How to install the git”的版本间的差异
来自百问网嵌入式Linux wiki
Zhouyuebiao(讨论 | 贡献) |
Zhouyuebiao(讨论 | 贡献) |
||
(未显示同一用户的1个中间版本) | |||
第1行: | 第1行: | ||
{{DISPLAYTITLE:如何安装Git}} | {{DISPLAYTITLE:如何安装Git}} | ||
+ | |||
+ | = 前言 = | ||
+ | : git 是一个分布式的版本控制软件工具,其作者是 Linus Benedict Torvalds ,于 2005 年以 GPL 发布。git 最初目的是为更好地管理 Linux 内核开发而设计。在发布后的很长一段时间内,git 只能在 Linux 和 Unix 系统上跑。不过,慢慢地有人把它移植到了 Windows 上。现在,Git可以在Linux、Unix、Mac和 Windows 这几大平台上正常运行了。 | ||
+ | |||
+ | = 在 Linux 上安装 git= | ||
+ | : 如果我们的开发使用的 Ubuntu 没有安装 git 那么在命令行运行 git 命令时会友好地告诉你Git没有安装,还会告诉你如何安装Git: | ||
+ | <syntaxhighlight lang# "bash"> | ||
+ | book@www.100ask.org:~$ git | ||
+ | The program 'git' is currently not installed. You can install it by typing: | ||
+ | sudo apt install git | ||
+ | book@www.100ask.org:~$ | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | : 所以,这里安装 git 的步骤非常简单,只需运行一条命令即可: | ||
+ | <syntaxhighlight lang# "bash"> | ||
+ | sudo apt install git | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | = 在 windows 上安装 git= | ||
+ | : 在 windows 上安装 git 也非常简单。我们需要先下载对应的安装包:从Git官网直接 [https://git-scm.com/downloads 下载安装程序]。 | ||
+ | :: [[File:How_to_install_the_git_001.png | 600px]] | ||
+ | : 点击安装包即可进行安装,安装过程中选择默认的安装选项即可。 | ||
+ | : 安装完成后,在开始菜单里找到 Git Bash 打开,之后会弹出一个类似命令行窗口的东西,Git 安装成功! | ||
+ | :: [[File:How_to_install_the_git_002.png | 600px]] | ||
+ | |||
+ | : 安装 git 后我们就可以开始配置 git,参考[http://wiki.100ask.org/How_to_config_the_git 配置git]。 | ||
[[Category:How_to]][[Category:Git]] | [[Category:How_to]][[Category:Git]] |
2020年1月10日 (五) 15:45的最新版本
前言
- git 是一个分布式的版本控制软件工具,其作者是 Linus Benedict Torvalds ,于 2005 年以 GPL 发布。git 最初目的是为更好地管理 Linux 内核开发而设计。在发布后的很长一段时间内,git 只能在 Linux 和 Unix 系统上跑。不过,慢慢地有人把它移植到了 Windows 上。现在,Git可以在Linux、Unix、Mac和 Windows 这几大平台上正常运行了。
在 Linux 上安装 git
- 如果我们的开发使用的 Ubuntu 没有安装 git 那么在命令行运行 git 命令时会友好地告诉你Git没有安装,还会告诉你如何安装Git:
book@www.100ask.org:~$ git
The program 'git' is currently not installed. You can install it by typing:
sudo apt install git
book@www.100ask.org:~$
- 所以,这里安装 git 的步骤非常简单,只需运行一条命令即可:
sudo apt install git