kadimasum / Get-Started-With-Git-GitHub

This is a project that demonstrates to first time students how to use git. I created it for Moringa School Students

Home Page:https://kadimasum.github.io/Get-Started-With-Git-GitHub/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Get Started With Git

This a sample class project that illustrates how to use git

Instructions

  1. Initialize an empty git repository using the following command
git init
  1. Check git status using the following command
git status
  1. Add untracked files to git repository using the following command
git add .
  1. Commit changes to a git repository using the following command
git commit -m "Enter the commit message"
  1. Check your commit history
git log
  1. Create a repository on Github

  2. Link remote GitHub repository to your local repository using the following command

git remote add origin <remote-url>
  1. Push to GitHub
git push origin <branch-name>
  1. Refresh your page on GitHub to see the changes

About

This is a project that demonstrates to first time students how to use git. I created it for Moringa School Students

https://kadimasum.github.io/Get-Started-With-Git-GitHub/


Languages

Language:HTML 100.0%