Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 484 Bytes

File metadata and controls

31 lines (23 loc) · 484 Bytes
layout page
permalink /teknik/git/
title git
icon fas fa-code-branch
description En sida om git

GitHub/Bitbucket

Fork

Gör du i webbinterfacet. Sedan klonar du din fork till din dator.

git clone https://github.com/your-username/forked-repo.git

Lägg till upstream

git remote add upstream https://github.com/user/repo.git

Hålla en fork uppdaterad

git fetch upstream
git rebase upstream/master
git push origin