Newer
Older
RetroPieRGB / howto_git.txt
Rolf Wiegand Storgaard on 20 Jun 2020 755 bytes add everything to git with small WIEGAND changes
Author : Jochen Zurborg
Date   : 04.11.2019

Find here a quick tutorial how to use git for our little project.

Downloading this repository
===========================

git clone https://github.com/arcadeforge/runcommand

Enabling your account
=====================

git config --global user.name "yourname"
git config --global user.email "youremail"


What happened since my last changes?
====================================

git status

Adding edited files to your local repository
============================================

- easy way
git add .

- file specific
git add yourfilename

Commit changes to repository
============================

git commit -m"What you did"

Uploading changes to github.com
===============================

git push