EloiStree / HelloGitForUnity3D

Learn to use Git et GitHub pour Unity3D
0 stars 0 forks source link

Keyword Checklist: Git Basic #42

Open EloiStree opened 3 weeks ago

EloiStree commented 3 weeks ago

Introduction:

Basic:

Hosting service:

Must know minimum:

Must know branching:

Must know if in team:

Create local Git:

Group work:

Come back in time:

GitHub tool:

Other

Create and push empty

echo "# REPOSITORY" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/EloiStree/REPOSITORY.git
git push -u origin main

Push Existing

git remote add origin https://github.com/EloiStree/REPOSITORY.git
git branch -M main
git push -u origin main

Cheatsheet

image image