Git server mac os

Содержание
  1. Разворачиваем сервер git на Mac OS X Leopard
  2. Установка git.
  3. Установка gitosis.
  4. Настройка gitosis.
  5. Git Server 4+
  6. Langui.net
  7. Снимки экрана
  8. Описание
  9. flumono / Правильная установка Git на Mac OS X
  10. This comment has been minimized.
  11. dashaderkach commented Apr 9, 2019
  12. This comment has been minimized.
  13. kalmahik commented Oct 26, 2019
  14. This comment has been minimized.
  15. SuperEuro2000 commented May 7, 2020
  16. This comment has been minimized.
  17. Asayo31 commented Jul 30, 2020
  18. This comment has been minimized.
  19. maureryakov commented Oct 30, 2020
  20. This comment has been minimized.
  21. Asayo31 commented Oct 30, 2020
  22. This comment has been minimized.
  23. maureryakov commented Oct 30, 2020
  24. This comment has been minimized.
  25. Asayo31 commented Oct 30, 2020
  26. This comment has been minimized.
  27. pavelgera commented Nov 3, 2020
  28. This comment has been minimized.
  29. Asayo31 commented Nov 3, 2020
  30. This comment has been minimized.
  31. maureryakov commented Nov 4, 2020
  32. This comment has been minimized.
  33. mihaluch commented Dec 20, 2020
  34. This comment has been minimized.
  35. Asayo31 commented Dec 21, 2020 •
  36. This comment has been minimized.
  37. pypyshkin commented Jan 23, 2021
  38. This comment has been minimized.
  39. Asayo31 commented Feb 1, 2021
  40. Install Git
  41. Install Git on Mac OS X
  42. Git for Mac Installer
  43. Install Git with Homebrew
  44. Install Git with MacPorts
  45. Install the git-credential-osxkeychain helper
  46. Install Git with Atlassian Sourcetree
  47. Build Git from source on OS X
  48. Install Git on Windows
  49. Git for Windows stand-alone installer
  50. Install Git with Atlassian Sourcetree
  51. Install Git on Linux
  52. Debian / Ubuntu (apt-get)
  53. Fedora (dnf/yum)
  54. Build Git from source on Linux

Разворачиваем сервер git на Mac OS X Leopard

Данный топик это некоторая компиляция из руководства по установке gitosis на Ubuntu Server и Leopard, плюс акценты от меня на некоторые места в которых могут возникнуть проблемы.

Изначально предположим, что вы уже знаете что такое git, и определились зачем вам надо настраивать удаленный репозиторий для этой распределенной системы управления версиями.

Установка git.

Если git у вас уже установлен — можете пропустить эту часть.
Чтобы установить git вы можете воспользоваться инсталлятором или поставить git из портов (MacPorts). Мне кажется более удобным второй путь, потому как порты в будущем можно будет легко обновить до свежей версии.

Git с помощью установщика.

Скачиваем dmg файл c google code, открываем, запускаем pkg файл установщика и все: git уже лежит у вас в /usr/local/.

Git из портов.

Предположу, что вы уже устновили порты. Если нет — устанавливайте, там нет ничего сложного, и продолжим.
Запускаем установку git из исходников:
sudo port install git-core
Если все прошло без ошибок — только что скомпилированный git лежит у вас в /opt/local/bin/. Я не случайно упоминаю пути, они могут вам понадобится если что-то пойдет не так.

Установка gitosis.

gitosis — это очень удобный git сервер. По большому счету это набор скриптов, которые выполняются при открытии ssh-сессии. После установки вы получите удобное, быстрое, безопасное хранилище для ваших файлов. Gitosis, как я уже писал выше, работает в связке с ssh. Таким образом, при желании что-то настроить «под себя» у вас есть полная свобода действий: посмотреть на текущие конфиги, поправить что-либо, поправить еще раз, исправить, наконец, все ошибки и довольно улыбнуться.
Скачиваем исходники gitosis и ставим его:
mkdir src
git clone git://eagain.net/gitosis.git
cd gitosis
sudo python setup.py install
Если в процессе установки возникли ошибки с setuptools пробуем их обойти:
cd ..
easy_install gitosis
Скорее всего на этом приключения с установкой gitosis должны были закончится. Попробуем его настроить.

Настройка gitosis.

Для обеспечения должного уровня безопасности для gitosis заводится отдельный пользователь и отдельная группа.

Создание группы и пользователя.

1. Найдем свободные UID и GID для нового пользователя
sudo dscl . list /Users uid
sudo dscl . list groups gid
(допустим 401 GID и UID свободны)
2. Создадим группу git
sudo dscl . create groups/git
sudo dscl . create groups/git gid 401
3. Создадим пользователя git
sudo dscl . create users/git
sudo dscl . create users/git uid 401
sudo dscl . create users/git NFSHomeDirectory /Users/git
sudo dscl . create users/git gid 401
sudo dscl . create users/git UserShell /bin/bash
sudo dscl . create users/git Password ‘*’
4. Создадим домашнюю директорию (ту что указали в строчке 3, пунктом раньше)
sudo mkdir /Users/git
sudo chown git /Users/git
sudo chgrp git /Users/git

Источник

Git Server 4+

Langui.net

Снимки экрана

Описание

Git Server allows you to easily install and manage a fully-functional Git server on the macOS platform.

Host Git repositories on your own Mac computer, and you have the max control over your source code. No source code leak, no monthly fee, no long-haul network links, everything is right beside you!

Читайте также:  Endpoint vpn для mac os

Git Server uses HTTP basic authentication to password protect your Git repositories, you can create arbitrary Git users without touching your system accounts.

Git Server acts as a central server where you can push your local changes to and share your code with other people / devices.

You can finish the setup process in minutes:
1. Create a Git repository
2. Create a Git user account
3. Set permissions for the repository
4. Start the Git service
5. You can access the Git repository now

Setup your own Git Server, and start creating great stuffs now!

Q: What kind of protocols does Git Server support?
A: Git Server provides Git service over the «http://»/»https://» protocols and it listens on port 8181 by default.

Q: I’m getting the 403 error?
A: Please make sure that you’ve assigned a user/group to the repository and that the current Git user account has read/write access to the repository.

Q: Can I use the 80/443 ports in Git Server?
A: You can use these ports on macOS Mojave(10.14) or later.

Источник

flumono / Правильная установка Git на Mac OS X

Дайте команду в терминале
$ git —version
И если вы увидите что то вроде этого
git version 1.9.3 (Apple Git-50)
то это статья для вас. Если вы видите версию 2.3.1 (на момент написания статьи) последняя была такая, то тогда у вас все хорошо.
И так сперва устанавливаем Homebrew, если он у вас еще не стоит.
Просто скопируйте и вставьте эту строку в терминал и запустите ее.
ruby -e «$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)»
После того как Homebrew установиться дайте в терминале команду
brew install git
После того как Git установится дайте команду
export PATH=/usr/local/bin:$PATH
чтобы прописать путь к новой установке Git.
И далее смотрим версию Git
$ git —verrsion
Должны увидеть что то типа этого
Git_Mac_OS_X
git version 2.3.1
Все! Далее чтобы обновлять Git достаточно дать команду
brew upgrade git
Просто не правда ли!?
Пример обновления Git в Mac OS X 10.10.2 через Homebrew
brewGitUpgrade
Вот и получили самую свежую версию Git на Mac OS X

This comment has been minimized.

Copy link Quote reply

dashaderkach commented Apr 9, 2019

This comment has been minimized.

Copy link Quote reply

kalmahik commented Oct 26, 2019

git —verrsion — тут очепятка)

This comment has been minimized.

Copy link Quote reply

SuperEuro2000 commented May 7, 2020

brew upgrade git
Error: git not installed

выходит такая ошибка

This comment has been minimized.

Copy link Quote reply

Asayo31 commented Jul 30, 2020

попробуйте команду $ git —version сразу запустить (у меня началась установка) или как вариант $xcode-select—install команда также активирует установку

This comment has been minimized.

Copy link Quote reply

maureryakov commented Oct 30, 2020

command not found

This comment has been minimized.

Copy link Quote reply

Asayo31 commented Oct 30, 2020

А версия мак ос какая? Если например стоит бета биг сюр то работать не будет

This comment has been minimized.

Copy link Quote reply

maureryakov commented Oct 30, 2020

А версия мак ос какая? Если например стоит бета биг сюр то работать не будет

This comment has been minimized.

Copy link Quote reply

Asayo31 commented Oct 30, 2020

А версия мак ос какая? Если например стоит бета биг сюр то работать не будет

Тогда должно работать, а в терминале сверху bash или zsh?

This comment has been minimized.

Copy link Quote reply

pavelgera commented Nov 3, 2020

This comment has been minimized.

Copy link Quote reply

Asayo31 commented Nov 3, 2020

У меня честно говоря не получилось bash для git завести перешла на zsh.
Если оболочка терминала для вас не принципиальна попробуйте с помощью
chsh -s /bin/zsh
Перейти в оболочку zsh, а после уже команду $ git —version которая должна сразу запустить установку или как вариант $xcode-select—install команда также активирует установку

This comment has been minimized.

Copy link Quote reply

maureryakov commented Nov 4, 2020

У меня честно говоря не получилось bash для git завести перешла на zsh.
Если оболочка терминала для вас не принципиальна попробуйте с помощью
chsh -s /bin/zsh
Перейти в оболочку zsh, а после уже команду $ git —version которая должна сразу запустить установку или как вариант $xcode-select—install команда также активирует установку

Все получилось ребят. Спасибо .

This comment has been minimized.

Copy link Quote reply

Читайте также:  Набор для установки windows

mihaluch commented Dec 20, 2020

я все так и делаю, но пишет что не может обновить с сервера ПО. каталина

This comment has been minimized.

Copy link Quote reply

Asayo31 commented Dec 21, 2020 •

я все так и делаю, но пишет что не может обновить с сервера ПО. каталина

Скорее всего тут вам нужно смотреть почему каталина не подтягивает инфу с сервера — мб обновиться до бигсюр, его сейчас официально выкатили и все работает.
Возможно также что ранее ставили отдельный патч с гитом hewbrew или что-то такое, он может в последствии фейлить стандартную установку

This comment has been minimized.

Copy link Quote reply

pypyshkin commented Jan 23, 2021

Приветствую, не случалось ли сталкиваться с таким предупреждением: warning: unable to access ‘/Users/Username/.config/git/attributes’: Permission denied

Не подскажете как это исправить? Не получается синхронизировать локальную папку с сервером (если я правильно вообще диагностирую). Перелопатил кучу ссылок, но понимание так и не пришло откуда ноги растут. Заранее спасибо

This comment has been minimized.

Copy link Quote reply

Asayo31 commented Feb 1, 2021

Приветствую, не случалось ли сталкиваться с таким предупреждением: warning: unable to access ‘/Users/Username/.config/git/attributes’: Permission denied

Не подскажете как это исправить? Не получается синхронизировать локальную папку с сервером (если я правильно вообще диагностирую). Перелопатил кучу ссылок, но понимание так и не пришло откуда ноги растут. Заранее спасибо

Добрый день, вероятно у вас проблема состоит в том, что по умолчанию папка

/.config/ создалась с root доступа, и теперь обычному юзеру недоступна. Можно попробовать сменить папку на папку пользователя. (Лично не сталкивалась поэтому не знаю где искать)
Также на просторах предлагают следующее — «The -R option with chown is to modify the permissions recursively. This will help if you have subfolders under

/.config»
Заменить права и таким образом разлочить папку. Попробуйте

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

Install Git

Install Git on Mac OS X

There are several ways to install Git on a Mac. In fact, if you’ve installed XCode (or it’s Command Line Tools), Git may already be installed. To find out, open a terminal and enter git —version .

Apple actually maintain and ship their own fork of Git, but it tends to lag behind mainstream Git by several major versions. You may want to install a newer version of Git using one of the methods below:

Git for Mac Installer

The easiest way to install Git on a Mac is via the stand-alone installer:

Follow the prompts to install Git.

Open a terminal and verify the installation was successful by typing git —version :

Configure your Git username and email using the following commands, replacing Emma’s name with your own. These details will be associated with any commits that you create:

(Optional) To make Git remember your username and password when working with HTTPS repositories, configure the git-credential-osxkeychain helper.

Install Git with Homebrew

If you have installed Homebrew to manage packages on OS X, you can follow these instructions to install Git:

Open your terminal and install Git using Homebrew:

Verify the installation was successful by typing which git —version :

Configure your Git username and email using the following commands, replacing Emma’s name with your own. These details will be associated with any commits that you create:

(Optional) To make Git remember your username and password when working with HTTPS repositories, install the git-credential-osxkeychain helper.

Install Git with MacPorts

If you have installed MacPorts to manage packages on OS X, you can follow these instructions to install Git:

Open your terminal and update MacPorts:

Search for the latest available Git ports and variants:

Install Git with bash completion, the OS X keychain helper, and the docs:

Configure your Git username and email using the following commands, replacing Emma’s name with your own. These details will be associated with any commits that you create:

(Optional) To make Git remember your username and password when working with HTTPS repositories, configure the git-credential-osxkeychain helper.

Install the git-credential-osxkeychain helper

Bitbucket supports pushing and pulling your Git repositories over both SSH and HTTPS. To work with a private repository over HTTPS, you must supply a username and password each time you push or pull. The git-credential-osxkeychain helper allows you to cache your username and password in the OSX keychain, so you don’t have to retype it each time.

Читайте также:  Как удалить cubeide linux

If you followed the MacPorts or Homebrew instructions above, the helper should already be installed. Otherwise you’ll need to download and install it. Open a terminal window and check:

If you receive a usage statement, skip to step 4. If the helper is not installed, go to step 2.

Use curl to download git-credential-osxkeychain (or download it via your browser) and move it to /usr/local/bin :

Make the file an executable:

Configure git to use the osxkeychain credential helper.

The next time Git prompts you for a username and password, it will cache them in your keychain for future use.

Install Git with Atlassian Sourcetree

Sourcetree, a free visual Git client for Mac, comes with its own bundled version of Git. You can download Sourcetree here.

To learn how to use Git with Sourcetree (and how to host your Git repositories on Bitbucket) you can follow our comprehensive Git tutorial with Bitbucket and Sourcetree.

Build Git from source on OS X

Building Git can be a little tricky on Mac due to certain libraries moving around between OS X releases. On El Capitan (OS X 10.11), follow these instructions to build Git:

From your terminal install XCode’s Command Line Tools (if you haven’t already):

Using Homebrew, install openssl:

Clone the Git source (or if you don’t yet have a version of Git installed, download and extract it):

To build Git run make with the following flags:

Install Git on Windows

Git for Windows stand-alone installer

When you’ve successfully started the installer, you should see the Git Setup wizard screen. Follow the Next and Finish prompts to complete the installation. The default options are pretty sensible for most users.

Open a Command Prompt (or Git Bash if during installation you elected not to use Git from the Windows Command Prompt).

Run the following commands to configure your Git username and email using the following commands, replacing Emma’s name with your own. These details will be associated with any commits that you create:

Optional: Install the Git credential helper on Windows

Bitbucket supports pushing and pulling over HTTP to your remote Git repositories on Bitbucket. Every time you interact with the remote repository, you must supply a username/password combination. You can store these credentials, instead of supplying the combination every time, with the Git Credential Manager for Windows.

Install Git with Atlassian Sourcetree

Sourcetree, a free visual Git client for Windows, comes with its own bundled version of Git. You can download Sourcetree here.

To learn how to use Git with Sourcetree (and how to host your Git repositories on Bitbucket) you can follow our comprehensive Git tutorial with Bitbucket and Sourcetree.

Install Git on Linux

Debian / Ubuntu (apt-get)

Git packages are available via apt:

From your shell, install Git using apt-get:

Verify the installation was successful by typing git —version :

Configure your Git username and email using the following commands, replacing Emma’s name with your own. These details will be associated with any commits that you create:

Fedora (dnf/yum)

Git packages are available via both yum and dnf:

From your shell, install Git using dnf (or yum, on older versions of Fedora):

Verify the installation was successful by typing git —version :

Configure your Git username and email using the following commands, replacing Emma’s name with your own. These details will be associated with any commits that you create

Build Git from source on Linux

Git requires the several dependencies to build on Linux. These are available via apt:

From your shell, install the necessary dependencies using apt-get:

Clone the Git source (or if you don’t yet have a version of Git installed, download and extract it):

To build Git and install it under /usr , run make :

Git requires the several dependencies to build on Linux. These are available via both yum and dnf:

From your shell, install the necessary build dependencies using dnf (or yum, on older versions of Fedora):

or using yum. For yum, you may need to install the Extra Packages for Enterprise Linux (EPEL) repository first:

Symlink docbook2X to the filename that the Git build expects:

Clone the Git source (or if you don’t yet have a version of Git installed, download and extract it):

To build Git and install it under /usr , run make :

Источник

Оцените статью