Skip to content

Commit 1523fcc

Browse files
committed
New translations install_git.md (Hausa)
1 parent 1163aac commit 1523fcc

1 file changed

Lines changed: 52 additions & 0 deletions

File tree

ha/install_git.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
Git is a "version control system" used by a lot of programmers. This software can track changes to files over time so that you can recall specific versions later. A bit like the "track changes" feature in Microsoft Word, but much more powerful.
2+
3+
## Installing Git
4+
5+
<!--sec data-title="Installing Git: Windows" data-id="git_install_windows"
6+
data-collapse=true ces-->
7+
8+
You can download Git from [git-scm.com](https://git-scm.com/). You can hit "next" on all steps except for one; in the fifth step entitled "Adjusting your PATH environment", choose "Use Git and optional Unix tools from the Windows Command Prompt" (the bottom option). Other than that, the defaults are fine. Checkout Windows-style, commit Unix-style line endings is good.
9+
10+
Do not forget to restart the command prompt or powershell after the installation finished successfully. <!--endsec-->
11+
12+
<!--sec data-title="Installing Git: OS X" data-id="git_install_OSX"
13+
data-collapse=true ces-->
14+
15+
Download Git from [git-scm.com](https://git-scm.com/) and just follow the instructions.
16+
17+
> **Note** If you are running OS X 10.6, 10.7, or 10.8, you will need to install the version of git from here: [Git installer for OS X Snow Leopard](https://sourceforge.net/projects/git-osx-installer/files/git-2.3.5-intel-universal-snow-leopard.dmg/download)
18+
19+
<!--endsec-->
20+
21+
<!--sec data-title="Installing Git: Debian or Ubuntu" data-id="git_install_debian_ubuntu"
22+
data-collapse=true ces-->
23+
24+
{% filename %}command-line{% endfilename %}
25+
26+
```bash
27+
$ sudo apt-get install git
28+
```
29+
30+
<!--endsec-->
31+
32+
<!--sec data-title="Installing Git: Fedora" data-id="git_install_fedora"
33+
data-collapse=true ces-->
34+
35+
{% filename %}command-line{% endfilename %}
36+
37+
```bash
38+
$ sudo dnf install git
39+
```
40+
41+
<!--endsec-->
42+
43+
<!--sec data-title="Installing Git: openSUSE" data-id="git_install_openSUSE"
44+
data-collapse=true ces-->
45+
46+
{% filename %}command-line{% endfilename %}
47+
48+
```bash
49+
$ sudo zypper install git
50+
```
51+
52+
<!--endsec-->

0 commit comments

Comments
 (0)