Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

Navigate to the local folder

cd /path/to/PLPBasicGitAssignment

Initialize a new Git repository

git init

Link to the GitHub repository

git remote add origin https://github.com/your-username/PLPBasicGitAssignment.git

Create a new file with a greeting

echo "Hello, Git!" > hello.txt

Stage the new file

git add hello.txt

Commit the new file

git commit -m "Add hello.txt with a greeting"

Push to GitHub (use 'main' or 'master' as appropriate)

git push -u origin main

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors