Skip to content

rasmus-z/Unity

 
 

Repository files navigation

Notices

From version 0.19 onwards, the location of the plugin has moved to Assets/Plugins/GitHub. If you have version 0.18 or lower, you need to delete the Assets/Editor/GitHub folder before you install newer versions. You should exit Unity and delete the folder from Explorer/Finder, as Unity will not unload native libraries while it's running. Also, remember to update your .gitignore file.

Build Status

Join the chat at https://gitter.im/github-for-unity/Unity Join the chat at https://discord.gg/5zH8hVx GitHub for Unity live coding on Twitch

About

The GitHub for Unity extension brings Git and GitHub into Unity, integrating source control into your work with friendly and accessible tools and workflows.

Please note: this software is currently alpha quality. Please refer to the list of known issues, and make sure you have backups of your work before trying it out.

Table Of Contents

Installing GitHub for Unity

Building and Contributing

Quick Guide to GitHub for Unity

More Resources

License

Installing GitHub for Unity

Requirements

  • Unity 5.4-2017.1
    • We've only tested the extension so far on Unity 5.4 to 2017.1. There's currently an blocker issue opened for 5.3 support, so we know it doesn't run there. There are some issues for 2017.2, so it may or may not run well on that version. Personal edition is fine.
  • Git and Git LFS 2.x

Git on macOS

The current release has limited macOS support. macOS users will need to install the latest Git and Git LFS manually, and make sure these are on the path. You can configure the Git location in the Settings tab on the GitHub window.

The easiest way of installing git and git lfs is to install Homebrew and then do brew install git git-lfs.

Make sure a Git user and email address are set in the ~/.gitconfig file before you initialize a repository for the first time. You can set these values by opening your ~/.gitconfig file and adding the following section, if it doesn't exist yet:

[user]
  name = Your Name
  email = Your Email

Git on Windows

The GitHub for Unity extension ships with a bundle of Git and Git LFS, to ensure that you have the correct version. These will be installed into %LOCALAPPDATA%\GitHubUnity when the extension runs for the first time.

Make sure a Git user and email address are set in the %HOME%\.gitconfig file before you initialize a repository for the first time. You can set these values by opening your %HOME%\.gitconfig file and adding the following section, if it doesn't exist yet:

[user]
  name = Your Name
  email = Your Email

Once the extension is installed, you can open a command line with the same Git and Git LFS version that the extension uses by going to the GitHub -> Command line menu in Unity.

Installation

This extensions needs to be installed (and updated) for each Unity project that you want to version control. First step is to download the latest package from the releases page; it will be saved as a file with the extension .unitypackage. To install it, open Unity, then open the project you want to version control, and then double click on the downloaded package. Alternatively, import the package by clicking Assets, Import Package, Custom Package, then select the downloaded package.

Log files

macOS

The extension log file can be found at ~/.local/share/GitHubUnityDebug/github-unity.log. This is a temporary location and will be changed in the future.

Windows

The extension log file can be found at %LOCALAPPDATA%\GitHubUnity\github-unity.log

Building and Contributing

The CONTRIBUTING.md document will help you get setup and familiar with the source. The documentation folder also contains more resources relevant to the project.

Please read the How to Build document for information on how to build GitHub for Unity.

If you're looking for something to work on, check out the up-for-grabs label.

I have a problem with GitHub for Unity

First, please search the open issues and closed issues to see if your issue hasn't already been reported (it may also be fixed).

If you can't find an issue that matches what you're seeing, open a new issue and fill out the template to provide us with enough information to investigate further.

Quick Guide to GitHub for Unity

Opening the GitHub window

You can access the GitHub window by going to Windows -> GitHub. The window opens by default next to the Inspector window.

Initialize Repository

Initialize repository screenshot

If the current Unity project is not in a Git repository, the GitHub for Unity extension will offer to initialize the repository for you. This will:

  • Initialize a git repository at the Unity project root via git init
  • Initialize git-lfs via git lfs install
  • Set up a .gitignore file at the Unity project root.
  • Set up a .gitattributes file at the Unity project root with a large list of known binary filetypes (images, audio, etc) that should be tracked by LFS
  • Configure the project to serialize meta files as text
  • Create an initial commit with the .gitignore and .gitattributes file.

Authentication

To set up credentials in Git so you can push and pull, you can sign in to GitHub by going to Window -> GitHub -> Account -> Sign in. You only have to sign in successfully once, your credentials will remain on the system for all Git operations in Unity and outside of it. If you've already signed in once but the Account dropdown still says Sign in, ignore it, it's a bug.

Authentication screenshot

Publish a new repository

  1. Go to github.com and create a new empty repository - do not add a license, readme or other files during the creation process.
  2. Copy the https URL shown in the creation page
  3. In Unity, go to Windows -> GitHub -> Settings and paste the url into the Remote textbox.
  4. Click Save repository.
  5. Go to the History tab and click Push.

Commiting your work - Changes tab

You can see which files have been changed and commit them through the Changes tab. .meta files will show up in relation to their files on the tree, so you can select a file for comitting and automatically have their .meta

Changes tab screenshot

Pushing/pulling your work - History tab

The history tab includes a Push button to push your work to the server. Make sure you have a remote url configured in the Settings tab so that you can push and pull your work.

To receive updates from the server by clicking on the Pull button. You cannot pull if you have local changes, so commit your changes before pulling.

History tab screenshot

Branches tab

Branches tab screenshot

Settings tab

You can configure your user data in the Settings tab, along with the path to the Git installation.

Locked files will appear in a list in the Settings tab. You can see who has locked a file and release file locks after you've pushed your work.

Settings tab screenshot

More Resources

See unity.github.com for more product-oriented information about GitHub for Unity.

License

MIT

The MIT license grant is not for GitHub's trademarks, which include the logo designs. GitHub reserves all trademark and copyright rights in and to all GitHub trademarks. GitHub's logos include, for instance, the stylized Invertocat designs that include "logo" in the file title in the following folder: IconsAndLogos.

Copyright 2015 - 2017 GitHub, Inc.

Packages

No packages published

Languages

  • C# 99.4%
  • Other 0.6%