Skip to content

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

Notifications You must be signed in to change notification settings

kadimasum/Get-Started-With-Git-GitHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages