User Tools

Site Tools


git:get_started

This is an old revision of the document!


GT Github Enterprise: Getting Started


We use Github Enterprise (licensed by Georgia Tech.) for version control of source code, documentation and occasionally useful (small) data files.

This tutorial currently presumes use of a Linux OS (eg. Ubuntu 16.04) and will guide you through:

  1. Generating ssh keys & registering them with GT's GitHub Enterprise service
  2. Navigating Git 'organizations' and 'repositories' accessible to you
  3. Basic commands to clone repositories, pull changed files as well as commit and push your own changes

Generating and Registering an SSH Encryption Key

We prefer that you clone any git repositories via the SSH protocol. This requires you to:

  1. generate an ssh public-private encryption key pair for each machine on which you want to clone a repository
  2. register your public encryption key with GitHub Enterprise via their browser interface

1. Generate SSH Encryption Key(s):

For each machine on which you want to clone a repository and work with Git version control, you will need to generate an SSH encryption public-private key pair and register the public key with your GitHub Enterprise account.

On the machine (on which you want to clone Git repositories), open a terminal (here we use the Bash shell) and run the following command,

cd ~/.ssh

Note that if the '.ssh/' directory does not exist (eg. using a newly created username/account on the machine), you'll have to create it:

mkdir ~/.ssh
cd ~/.ssh

Now generate your SSH encryption public-private key pair,

ssh-keygen -t rsa -b 4096

It will prompt you for a file name in which to save the generated encryption keys,

Enter file in which to save the key (/home/achang/.ssh/id_rsa): 

As it's possible to have multiple encryption keys for different GitHub services, you may want to name the file something that identifies it with GT's licensed GitHub Enterprise (eg. 'gatech_github').

Next, you'll be prompted to enter a passphrase/password. You will have to remember this; when using Git commands that require access to the remote server, you'll be prompted to enter your passphrase!

Enter passphrase (empty for no passphrase):  
Enter same passphrase again: 

Upon completing this, run ls ~/.ssh in the terminal. You should see a pair of files listed with the file name specified earlier; one has the extension .pub (indicating it is the public key) while the other has no extension (and is your private encryption key).

Run, cat <filename>.pub, where <filename> is replaced with the filename you specified for your encryption keys. Copy the output of this command to a text editor. You'll need it in a moment.

Controller (Serial Tosser)

git/get_started.1535380213.txt.gz · Last modified: 2024/08/20 21:38 (external edit)