GitHub

GitHub Website

GitHub is a development platform inspired by the way you work. From open source to business, you can host and review code, manage projects, and build software alongside 50 million developers.

GitHub Desktop App

Quick Getting Started

hello-world

GitHub Training (With GitHub Desktop)

2019.05.25 GitHub Training by Luis and Stephen

Git Commands Explained:

2018-12-05_Git_Commands_Explained

From: vcs-git-github-bitbucket-nedir-github-kullanimi

GitHub Project Organization

How to Organize GitHub Projects

Making Branches

atlassian - feature-branch-workflow

More Resources

GitHub Guides Getting Started with GitHub introduction-to-github Github Flow Introduction

GitHub Cloning Behavior

Github cloning behavior

Referencing Issues in Commits

Github you can make commits reference issues by adding: #

https://github.com/JonasWanke/timetable/issues/17

2021-04-01_ReferencingIssueInCommit_Input

2021-04-01_ReferencingIssueInCommit_Result

Change Git Remote URL

$ git remote set-url <remote_name> <remote_url>

Example to change the URL of Git origin remote:

$ git remote set-url origin https://git-repo/new-repository.git

Check Git remote URL:

$ git remote -v

Reference: devconnected - How To Change Git Remote Origin

Journal