Skip to content

yalear/Hello-World

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Hello-World

The first test case that I create

$ mkdir ~/Hello-World

Creates a directory for your project called "Hello World" in your user directory

$ cd ~/Hello-World

Changes the current working directory to your newly created directory

$ git init

Sets up the necessary Git files

Initialized empty Git repository in /Users/you/Hello-World/ .git/

$ touch README

Creates a file called "README" in your Hello-World directory

$ git add README

Stages your README file, adding it to the list of files to be committed

$ git commit -m 'first commit'

Commits your files, adding the message "first commit"

$ git remote add origin https://github.com/username/Hello-World.git

Creates a remote named "origin" pointing at your GitHub repository

$ git push origin master

Sends your commits in the "master" branch to GitHub

About

The first test case that I create

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published