- Git SSH Windows — пошаговое руководство
- Генерация ключа SSH
- Добавление SSH-ключа в ssh-agent
- Добавление ключа SSH в учетную запись GitHub
- cham11ng / git-ssh-configuration.md
- dmangiarelli / GitForWindowsSetup.md
- Как настроить подключение к удаленному Git репозиторию
- 3 ответа 3
- Установка
- Клонирование через SSH
- Создание ssh-ключа.
- Если ключ уже есть
Git SSH Windows — пошаговое руководство
Настроим пошагово Git SSH для Windows 10. Это позволит вам выполнять команды git без ввода пароля от своей учетной записи GitHub.
- Генерация ключа SSH.
- Добавление SSH-ключа в ssh-agent.
- Добавление ключа SSH в учетную запись GitHub.
Генерация ключа SSH
Откройте bash/терминал . Добавьте следующий текст, подставив свой адрес электронной почты GitHub .
Будет создан ключ ssh , используя e-mail в качестве метки.
Когда вам будет предложено «Введите файл, в котором вы хотите сохранить ключ», нажмите Enter . Это установит в местоположение по умолчанию.
Enter a file in which to save the key (/c/Users/you/.ssh/id_rsa):[Press enter]
Далее введите безопасную фразу-пароль дважды или просто нажмите Enter .
Enter passphrase (empty for no passphrase): [Type a passphrase]
Enter same passphrase again: [Type passphrase again]
Добавление SSH-ключа в ssh-agent
Чтобы запустить ssh-агент введите следующую команду.
На экране отобразится похожая строка.
Agent pid 31724
Добавим свой закрытый ключ SSH в ssh-agent . Если вы создали свой ключ с другим именем (или добавляете существующий ключ с другим именем), замените в команде id_rsa на имя вашего файла закрытого (приватного) ключа.
Ключ будет успешно добавлен в ssh-агент .
Добавление ключа SSH в учетную запись GitHub
Мы сгенерировали у себя на компьютере закрытый ключ SSH и добавили его в ssh-агент . Теперь нам необходимо добавить SSH ключ в учетную запись GitHub.
Сейчас нам необходимо скопировать SSH ключ в буфер обмена.
Способов есть несколько, но я же вам предлагаю следующее решения для Windows 10: введите команду ниже.
Прямо в терминале вы увидите содержимое необходимого файла с ключем. Скопируйте его в буфер.
Теперь зайдите на вашу страницу GitHub » Settings .
Перейдите во вкладку SSH and GPG keys и нажмите на кнопку New SSH key для добавления SSH ключа в вашу учетную запись GitHub.
В поле Title добавьте заголок для данного ключа. Например, если вы захотите настроить SSH доступ на нескольких устройствах, то вы будите понимать какой ключ принадлежит какому устройству.
В поле Key добавьте свой ssh-ключ, который вы скопировали в буфер обмена на предыдущем шаге.
Нажмите Add SSH key .
Для подтверждения вам потребуется ввести свой пароль от учетной записи GitHub .
На этом настройка SSH для вашего устройства завершена, теперь вы можете работать с git без ввода пароля от своей учетной записи.
Если вам понравилась данная статья, можете прочитать как настроить моментальную загрузку сайта на хостинг и синхронизацию файлов.
Надеюсь, вам понравилась данная информация. Если вам интересна тема web-разработки, то можете следить за выходом новых статей в Telegram.
cham11ng / git-ssh-configuration.md
Git Installation and SSH Configuration
Installation
We can check if Git is installed by typing git —version in your Terminal or Git Bash (Windows) respectively.
Download Git for Windows from this link https://git-scm.com/downloads
Configuration
Set up SSH for Git
Open your Terminal or Git Bash(Windows).
- Ensure we have SSH client installed:
List the contents of your
If we have already setup default identity, we can see two id_ files
- Set up our default identity:
The system adds keys for all identities to the /home/ /.ssh (Linux) or /c/Users/ /.ssh (Windows) directory. The following procedure creates a default identity.
Hit ssh-keygen command on Terminal or Git Bash.
Press enter to accept the default key and location or we can set somewhere else.
We enter and re-enter a passphrase when prompted. Unless you need a key for a process such as script, you should always provide a passphrase. The command creates your default identity with its public and private keys
List the contents of your
- Adding your SSH key to the ssh-agent:
Ensure ssh-agent is enabled:
Add your SSH key to the ssh-agent
- Find and take a note of your public key fingerprint. If you’re using OpenSSH 6.7 or older:
- Install the public key on your Remote GitHub/Bitbucket account:
Copy this output to respective SSH keys setting.
- GitHub Setting >> SSH and GPG keys >> New SSH key
- Bitbucket Setting >> SSH keys >> Add Key
You have now successfully configured SSH for Git in Windows/Linux/Mac OS.
dmangiarelli / GitForWindowsSetup.md
How to setup Git for Windows
I know this document seems long, but it shouldn’t be too difficult to follow. This guide is based on Windows, but every program here has Linux/Mac equivalents, and in most cases they’re built-in. So, take a deep breath and go step by step.
The steps below are for GitHub, but the steps are almost idential for Bitbucket, Heroku, etc.
You’ll probably want to make sure Chocolatey is installed, since it streamlines installing this stuff later. If you install via Chocolatey, you don’t need to run the installers from the products’ respective sites.
The first thing you’ll want to do is to download and install Cmder, which is a terminal program that serves as excellent replacement for the built-in cmd.exe . It’s not a shell itself, so it supports running plain old cmd.exe commands and running PowerShell.
As a comment notes below, Cmder is actually a packaged version of ConEmu. If you don’t want the out-of-the-box configuration that Cmder comes with, you can install ConEmu by iteslf and customize it to your needs from there. Both of course have the same features though.
With Chocolatey, run one of the following from an elevated propt:
Git uses a per-user config file located at %USERPROFILE%\.gitconfig . It’s a plain-text file you can edit with your favorite text editor (or Notepad, if you haven’t chosen a favorite yet). Note that git calls this config the «global» config. It’s more general than per-repository config, and more specific than the machine config.
This is optional, but highly recommended. Download and install TortoiseGit. You’ll want some of the tools it installs later. If you have another Tortoise installed (e.g. TortoiseSVN) and you don’t want to have TortoiseGit’s context menu clutter, you don’t have to download it. If you’re not sure, get it. TortoiseGit is nice because it adds overlay icons (that don’t always update properly). Another benefit is that a full PuTTY install, which you’ll also need.
If you really don’t want the extra shell extension (I don’t blame you), you can install TortoiseGit, copy TortoiseGitPlink.exe from TortoiseGit’s bin/ directory, store it somewhere else, and then uninstall TortoiseGit. Then, later on when you set the GIT_SSH environment variable, just use the new path to it.
You can skip this step if you installed TortoiseGit.
If you didn’t install it, download and run the Windows Installer so you get all the apps installed from one package.
There are a few different ways to authenticate with GitHub. The easiest is to use Git Credential Manager for Windows. It supports authenticating with GitHub over HTTPS even with two factor authentication. If you use this, you can skip to the «Install Git» section. If you wan to use SSH, read on.
SSH Setup with PuTTY
If you’re using a service like GitHub or Bitbucket, you have a couple of options when authenticating so you can push your code. This will allow you to share your code with other people. Even if you’re the only person working on a project, those sites can serve as a backup.
Set up SSH keys on Windows:
- Open PuTTYgen by searching for it in the Start menu or Start screen. If you see multiple entries, any will work.
Leave the settings as they are, unless you know what you’re doing. - Click «Generate».
- Wiggle the mouse around in the top part of the window until the progress bar is full, as the program asks you to do.
- Once you’ve provided enough entropy, a bunch of text fields will appear. It’s highly recommended that you provide a passphrase.
- After providing a passphrase, click «Save private key». The usual directory to save these in is %USERPROFILE%\_ssh .
It doesn’t matter what you call the key, but for demonstration purposes, I’m going to call it github.ppk . This file should have an extension of .ppk . - Now, log in to GitHub.com. Don’t close PuTTYgen yet.
- Go to your Account settings and then to SSH keys.
- Click «Add SSH key». Copy the text in the top text box in PuTTYgen, the one labeled «Public key for pasting into OpenSSH authorized_keys file» and paste it into the Key box in GitHub. Give it a title that describes what machine the key is on (e.g. «Work laptop»).
- Click «Add key».
And with that, we’re done setting things up to connect to GitHub.
If you also want a native command-line build of ssh (i.e., ssh.exe or ssh-agent.exe ) to work, you’ll need to also export your key in OpenSSH format. You can do this from PuTTYgen by clicking on Conversions > Export OpenSSH Key. These keys are typically saved in %USERPROFILE%\.ssh or (
/.ssh in *nix-style paths, which also work in Bash environments on Windows). Once you export the key, you should copy it to %USERPROFILE%\.ssh\id_rsa . See the comments for some more information. Source
Now your SSH keys are set up and you can use them to push to and pull from GitHub, but you still need to do one more thing to use those keys. Before you want to push code to GitHub, you’ll need to do this, but once you do it, you won’t have to do it again until you restart your computer.
- Run Pageant (search for it in the Start menu/screen).
- Right-click the Notification Area icon (it looks like a PC with a dark sombrero).
- Click «Add Key».
- Find the .ppk file you created above.
- Enter the passphrase you used before.
If the passphrase prompt goes away, you should be all set.
If you want to confirm, right-click on the Pageant icon again and click on «View Keys».
Now, you can pull from and push to GitHub without being pestered for your password, at least until you log off. You can also double-click on the notification area icon to see what keys have already been added to Pageant.
Git for Windows
Finally, we get to the part where we get to install Git.
- Download the Git installer.
Or, with Chocolatey (which may be a patch or two behind the main site, and will always install the shell extension).
choco install git - When installing, pick the following options:
- Uncheck the box for Windows Explorer integration.
- Choose «Run Git from the Windows Command Prompt».
- Choose «Checkout Windows-style, commit Unix-style line endings».
- Let the installer finish.
You may need to manually add a System Environment Variable (Start > Search for «Edit the system environment variables»). Add a new System (not User) variable. Give it the name GIT_SSH , and a value of the path to a TortoiseGitPlink.exe (e.g. C:\Program Files\TortoiseGit\bin\TortoisePLink.exe ).
Or, the PowerShell way (run from an elevated PowerShell prompt): [Environment]::SetEnvironmentVariable(«GIT_SSH», «C:\Program Files\TortoiseGit\bin\TortoiseGitPLink.exe», «Machine» )
This is mostly optional if you’re using Cmder, but if you want more general support for Git in PowerShell, you can install an awesome package called posh-git. Because PowerShell is awesome, and you should be using it instead of batch scripts and plain old cmd.exe as much as you can. Even without this, you can use Git commands from PowerShell, but posh-git will give you status information right in the prompt.
- Make sure you have PowerShell 5 or later installed.
To check, open PowerShell from your Start menu/screen and type $PSVersionTable . The PSVersion value should be 5.0 or greater.
If you don’t have v5 or later installed, download and run the correct installer for Windows Management Framework 5 (which comes with PowerShell 5) from this page. - Change PowerShell’s script execution policy.
Open an elevated PowerShell prompt and enter:
Set-ExecutionPolicy RemoteSigned - Install Posh-Git.
Install-Module Posh-Git
Now, whenever you’re in a Git workspace directory in your PowerShell prompt, you’ll get a fancy prompt, and you can still use tab completion and standard Windows paths. Hooray! Git will still echo paths with backslashes, but it will recognize forward slashes.
- Git Extensions is another shell extension that also has a Visual Studio extension. It’s very user-friendly.
- GitHub Desktop, not to be confused with Git for Windows, is GitHub’s Windows Git client.
- SourceTree is to Bitbucket as GitHub for Windows is to GitHub: it’s Atlassian’s answer to GitHub for Windows.
A difftool is installed by default with TortoiseGit, but I’m a fan of using SourceGear DiffMerge for diffs and P4Merge for merging. These may be installed via Chocolatey with choco install diffmerge p4merge . Install those programs and add the following to your .gitconfig file:
Как настроить подключение к удаленному Git репозиторию
Как настроить подключение к удаленному Git-репозиторию, через SSH, на компьютере с Windows 7 . И соответственно выкачать содержимое к себе на локальный сервер.
Удаленный репозиторий находится на сервере с git. мне нужно просто склонировать содержимое. никаких пушей обратно. там есть идентификация. сгенерил паблик кей и отослал спец-ту на той стороне. как мне добавить ранее сгенеренный-свой ключ через консоль и подключиться к серверу? какие команды. Windows 7 на моей машине.
3 ответа 3
Установка
Если ещё не установлен, то Git можно взять здесь. Вместе с ним будет unix-like консоль Git Bash.
Клонирование через SSH
Пример команды для клонирования через SSH.
В общем случае команда для клонирования по SSH выглядит так:
Не перепутайте с HTTPS, который потребует авторизации через логин-пароль:
Создание ssh-ключа.
На Windows можно как через cmd, так и Git Bash, на *nix — просто в консоли. Но в cmd я не разбираюсь, поэтому привожу инструкцию только для Git Bash & *nix:
Можно выбрать passphrase, который повышает надёжность, но его нужно будет вводить каждый раз при использовании. Если забудете — ключ бесполезен для дальнейшего использования.
После выполнения команды публичный ключ появляется соответственно в
Именно публичный ключ нужно передавать специалисту на той стороне. (Наверняка вы так и сделали, но всё-таки стоит об этом сказать)
Если всё сделали правильно, то при попытке соединения по ssh ключ будет использоваться автоматически.
Если ключ уже есть
То его надо положить в c:\Users\%username%\.ssh . Если имя ключа отличается от id_rsa , то надо создать файл c:\Users\%username%\.ssh\config со следующим содержимым:
На практике мне когда-то помогла эта статья — лучший пример из всего что я видел: http://habrahabr.ru/sandbox/37865/
В ней полностью показаны клиентские программы для работы с push-ом и pull-ом. У меня лично Windows недолюбливал родной Git клиент, но всегда прекрасно работает с Tortoise (есть в статье).
В ней есть полное руководство по подключению. Не уверен правильная ли это аналогия, но вы можете поставить себе программу Composer и ей подобные, после чего можно через консоль Windows полностью клонировать себе репозиторий с Git-а.
Если же касается более специфичного подключения именно к Git, то эта страница будет полезной: http://webhamster.ru/site/page/index/articles/comp/171
Добавил, как попросили, кратко содержимое статьи:
Идем на официальную страницу Git http://git-scm.com, кликаем на Download for Windows. В открывшемся окне кликаем на Full installer for official Git. Запускаем полученный exe-шник.
Я рекомендую выбрать «Run Git from the Windows Command Prompt». Все остальные опции можно оставлять по-умолчанию. После установки Git нужно перегрузиться или завершить сеанс пользователя и снова войти, чтобы применились изменения в системной переменной PATH.
Далее нужно проверить, доступен ли Git для работы. В любом каталоге даем команду:
Если получаем информацию о версии, то Git установлен и работает. Если получаем информацию что программа git не найдена, разбираемся что сделали не так.
Настройка SSH-ключей в Windows
В операционной системе Windows генератор SSH-ключей включен в комплект поставки Git. Для генерации ключей необходимо запустить на выполнение файл C:\Program Files\Git\Git bash.vbs. Его можно запустить как обычный exe-шник. Откроется программа «Консоль git». В ней надо дать команду:
Будьте внимательны, в этой консоли подглючивает копи-паст, проще ввести команду вручную. В качестве email указываем свой почтовый ящик. На запрос «Enter file in which to save the key» просто нажимаем Enter. При запросе пароля «Enter passphrase» и «Enter same passphrase again» просто нажимаем Enter. В процессе генерации ключей в консоли будет выдаваться примерно следующая информация:
После выполнения этой программы, в каталоге C:\Documents and Settings\username.ssh будут лежать файлы id_rsa и id_rsa.pub, они нам пригодятся в дальнейшем.
Установка SSH-ключа в GitHub
Нас колько я помню, эта часть ответа несколько изменилась в современном дизайне GitHub-а, но интуитивно можо найти.
Сразу после регистрации необходимо прописать в системе GutHub свой публичный ключ шифрования (открытый SSH-ключ). Для добавления ключа, надо в правом верхнем углу нажать «Account Settings».
В открывшемся окне нужно кликнуть на пункт меню «SSH Public Keys», и нажать «Add Another Public Key». Появится два поля — название ключа (Title) и содержимое ключа (Key).
В поле Title можно написать название компьютера, на котором сгенерирован публичный ключ. Можно писать по-русски.
В поле Key надо вставить содержимое файла id_rsa.pub . Помните, в каком каталоге они находятся? Переходим в этот каталог, открываем любым текстовым редактором файл id_rsa.pub (именно с расширением .pub , не перепутайте). Выделяем весь текст, копируем, и вставляем на странице GitHub в поле Key.
После добавления ключа, компьютер может соединяться с GitHub через программу git, и никаких ошибок не должно возникать.
Работа с репозитарием на GitHub через программу Git
Начиная с этого момента, пляски вокруг web-интерфейса GitHub можно считать законченными. Далее можно работать только используя программу git.
Вначале нужно сделать небольшую настройку программы git: указать локальной системе git имя пользователя и email. Это делается следующими командами, которые можно выполнить, находясь в любом каталоге:
где вместо YourFullName нужно написать свое имя, а вместо myemail@mail.ru — свой email. Эти значения используются для логина на GitHub. Поэтому на месте YourFullName нужно указать ваш логин на GitHub-е, а на месте myemail@mail.ru нужно указать email, который вы вводили при генерации ключей шифрования.
После этих настроек, можно заливать свои файлы в репозитарий. Переходим в каталог со своим проектом, и даем команды:
После этих команд на сервере GitHub образуется копии файлов того каталога, в котором были выполнены данные команды. Далее можно уже делать коммиты, заливки на сервер GitHub изменений, считывания изменений с сервера. Но это уже совсем другая история.