Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Latest commit

 

History

History
56 lines (34 loc) · 2.24 KB

Github.md

File metadata and controls

56 lines (34 loc) · 2.24 KB

Github Info

Overview

This document contains useful info about Git and Github

Quick-list

What program should I use?

Github Desktop

Github Desktop is a simple and easy to use UI with good Github integration.

GitKraken

GitKraken is a very powerful cross-platform Git UI. Watch the GitKraken tutorial for a quick overview.

Commandline

Github has an awesome gamefied Git CLI tutorial.

What is a good workflow?

See: https://guides.github.com/introduction/flow/

Git says there are changes but I didn't change anything?!

You're probably not using a .gitignore file, and git is tracking the Visual Studio user files. program Metadata files such as Visual Studio user files shouldn't be tracked in git since they will be different for every member of your team. You can tell git to ignore these files by using a .gitignore file. As the name states, this file tells git which files to ignore. Github has a repo full of useful .gitignore files for different types of projects. Put the contents of such a file in a file .gitignore in the root of your git repo.

More info: Github "ignoring files" docs

I want more information!

Feel free to create an issue for this repo if you want information on something specific.

Also useful: https://services.github.com/resources/