Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 339 Bytes

File metadata and controls

12 lines (11 loc) · 339 Bytes

Introduction

An easy application to learn git functions

Git commands:

git init

Initialse a new git repository in the directory

git add .

Add all files to the git repository

git commit -m "commit message"

Stage the files

git push origin master

Push all local changes to remote repository